How can I add a simple counter to my table. I d like to store this number in a variable (if it is possible using just HTML)
HTML
<div class="table-responsive">
<table id="carTable" class="table table-bordred table-striped">
<thead>
<th>Car ID</th>
</thead>
<tbody>
<tr *ngFor="let car of cars">
<td>{{system.systemID}}</td>
</tr>
</tbody>
</table>
</div>