for loop angular html code example
Example 1: angular loop
<li *ngFor="let a of fakeArray; let index = index">Something {{ index }}</li>
Example 2: ngfor
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>
Example 3: forloop angular
for (let i = 0; i < 3; i++) {
console.log ("Block statement execution no." + i);
}
Example 4: angular for loop
let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
console.log(array[i]);
}
Example 5: angular for loop
let array = [1,2,3];
array.forEach(function (value) {
console.log(value);
});