Create a numbered table list in Angular
// http://stackoverflow.com/questions/29091830/auto-numbering-of-angularjs-ng-repeat-list
// # | Name of student | Student ID
// _________________________________
// 1 | Samuel Addo | 346578
// 2 | GRace Asumani | 965433
// 3 | Zein Akill | 123455
// 4 | David Addoteye | 678543
{{$index +1}}
<tr ng-repeat="student in students">
<td>#{{$index + 1}}</td>
<td>{{student.name}}</td>
<td>{{student.id}}</td>
</tr>