JAVASCRIPT
function apDesc(lc, qtos, gar, tot) {
this.lc = lc;
this.qtos = qtos;
this.gar = gar;
this.tot = tot;
};
const lcDesc = new apDesc("Zona Sul", 3, 1, 12);
const tabelaDesc = `<tr>
<td>${lcDesc.lc}</td>
<td>${lcDesc.qtos}</td>
<td>${lcDesc.gar}</td>td>
<td>${lcDesc.tot}</td>td>
</tr>`;
}
HTML
<table>
  <thead>
    <tr>
      <th>Local</th>
      <th>Quartos</th>
      <th>Garagem</th>
      <th>Total</th>
    </tr>
  </thead>
  <tbody id="descricao"></tbody>
</table>

Método call() — Exemplo 1

Local Quartos Garagem Total