ng for angular 2 code example
Example 1: angular ngfor index
<ul>
<li *ngFor="let item of items; let i = index" [attr.data-index]="i">
{{item}}
</li>
</ul>
Example 2: ngfor
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>