ngFor angular code example
Example 1: ngfor index
<ul>
<li *ngFor="let item of items; let i = index" [attr.data-index]="i">
{{item}}
</li>
</ul>
Example 2: ngfor get index
<ul>
<li *ngFor="let item of items; let i = index" [attr.data-index]="i">
{{item}}
</li>
</ul>
Example 3: ngFor
//for
<div *ngFor='let [data] of [dataArray]; let i=index;'>
<h2> {{i}} {{data.title}} </h2>
<img src='{{data.image}}' />
</div>
//the data contained in an array will be displayed element by element
//similar to the function .map() in React
Example 4: ngfor index
/*
ngFor with index in angular is used here for generating 'li' element till the studentDetails array length.
And also make a note if you are using angular 1 then you have to replace 'let' with '#', but its ok if you are using angular 2 or above.
*/
<ul>
<li *ngFor="let student of studentDetails; index as i;" [attr.data-index]="i">
{{student}}
</li>
</ul>
/*
I hope it will help you.
Namaste
*/
Example 5: ngfor
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>