the truth is I'm pretty lost with this tables and JavaScript, what I want to know is how to enter or rather create rows to a table created with Boostrap, and at the same time enter certain data. The structure of the rows to create would be this;
<tr>
<th scope="row">dato</th>
<td>dato</td>
<td>dato</td>
<td>dato</td>
</tr>
I leave the code of the standard table of boostrap to which I require to make the entry of rows and at the same time data.
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet"/>
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">cal 1</th>
<th scope="col">cal 2</th>
<th scope="col">cal 3</th>
<th scope="col">cal 4</th>
</tr>
</thead>
<tbody>
<!-- aqui ingresar las filas -->
</tbody>
</table>