I am attempting to prepend a <tr><th>{...}</th><td>{...}</td></tr>
to the following html element:
<table>
<tbody>
// Prepend element here...
<tr>
<th>Something here</th>
<td>{...}</td>
</tr>
<tr>
<th>Another thing here</th>
<td>{...}</td>
</tr>
</tbody>
</table>
How could I prepend the element outlined above to <tbody>
utilising vanilla js?