angular 8 index ngfor code example
Example 1: ngfor index
<ul>
<li *ngFor="let item of items; index as i">
{{item}}
</li>
</ul>
Example 2: ngfor
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>
<ul>
<li *ngFor="let item of items; index as i">
{{item}}
</li>
</ul>
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>