I want to get index of each row in this table using angularJS
<table>
<tbody>
<tr ng-repeat = "cust in costomers">
<td> cust.name </td>
<td> cust.phone </td>
<td> cust.address </td>
</tr>
</tbody>
I want to have a variable that contains the index of each row not to just display it
variable that contains the index
mean? Explain intended usage – charlietfl 2 days agocust
as argument to any controller methods. Still not very clear what higher level issue is – charlietfl 2 days ago