Answers for "index in angular for loop"

1

angular 7 for loop index ts

for (let i = 0; i < 3; i++) {
  console.log ("Block statement execution no." + i);
}
Posted by: Guest on April-21-2020
0

index in ng for

You have to use let to declare the value rather than #.

<ul>
    <li *ngFor="let item of items; let i = index" [attr.data-index]="i">
        {{item}}
    </li>
</ul>
Angular = 1
<ul>
    <li *ngFor="#item of items; #i = index" [attr.data-index]="i">
        {{item}}
    </li>
</ul>
Posted by: Guest on June-20-2021

Browse Popular Code Answers by Language