function apVenda(lc, qde) {
(this.lc = lc), (this.qde = qde);}
const lcVenda = new apVenda("Zona Sul", 7);
const tabelaVenda = `<tr>
<td>${lcVenda.lc}</td>
<td>${lcVenda.qtos}</td>
</tr>`;
const venda = document.querySelector("#venda");
venda.insertAdjacentHTML("afterbegin", tabelaVenda);
};
<table>
<thead>
<tr>
<th>Local</th>
<th>Vendas</th>
</tr>
</thead>
<tbody id="venda"></tbody>
</table>
Local | Vendas |
---|