i have a table with a numeric date but I want to change the numeric month into string
<table style="width: 100%;">
<tr>
<th>Date</th>
<th>Total</th>
</tr>
<tr>
<td id="date">2021-11-12</td>
<td>100</td>
</tr>
</table>
Now I want to convert it into string just the month name
ex:
<table style="width: 100%;">
<tr>
<th>Date</th>
<th>Total</th>
</tr>
<tr>
<td id="date">November 12, 2021</td> <!---Something like this--->
<td>100</td>
</tr>
</table>
is there any way to do that in javascript?