I have an HTML Table with a single row
<table style="width:100%">
<tr>
<th>timestamp</th>
<th>Longitude</th>
<th>Latitude</th>
</tr>
<tr>
<td>{{timestamp}}</td>
<td>{{longitude}}</td>
<td>{{latitude}}</td>
</tr>
</table>
Now I have multiple rows retrieved from data base to add to the table and I want to insert some HTML code like
foreach ( row ){ <tr>
<td>{{timestamp}}</td>
<td>{{longitude}}</td>
<td>{{latitude}}</td>
</tr>}
Is it possible using only HTML? Do I need Jquery or javascript? How can I write code to have it done? PS: I can retrieve a number of rows. I have a Node.js backend