I have a bunch of names I'm adding to an array:
for (const approve of requestApproval[strings.Approve]) {
approved.push(
approve.Title + '<br/>'
);
}
The array:
I then put it into an email as HTML:
<center>
<table border="0" cellpadding="5" cellspacing="5" style = "border-collapse: collapse;">
<tr>
<th>Approved</th>
<th>Abstained</th>
<th>Not Approved</th>
</tr>
<tr>
<td align="center">${approved}</td>
<td align="center">${abstained}</td>
<td align="center">${disapproved}</td>
</tr>
</table>
</center>
The result is a comma is inserted from somewhere:
How can I either stop the comma or remove the comma?


approved.join("")- the comma is there because its the default behavior ofArray.toString())