angular loop 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: angular loop
<li *ngFor="let a of fakeArray; let index = index">Something {{ index }}</li>
Example 3: angular for loop
let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
console.log(array[i]);
}
Example 4: angular for loop
let array = [1,2,3];
array.forEach(function (value) {
console.log(value);
});