In html5 / css / bootstrap 4 ... How can I add a column at runtime of the page?
div class="container">
<h1 class="page-header">Tabelas com Bootstrap</h1>
<div class="table-responsive">
<table class="table table-striped table-bordered table-hover table table-bordered table table-striped">
<tbody>
<tr>
<th>1</th>
<td>Conteúdo</td>
<td>Conteúdo</td>
</tr>
<tr>
<th>2</th>
<td>Conteúdo</td>
<td>Conteúdo</td>
</tr>
<tr>
<td>Conteúdo</td>
<td>Conteúdo</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container">
© 2016 - Web Dev Academy
</div>
<button type="button">Adicionar mais uma linha
</button>
How do I add another row in this table when the user clicks the ...? button.