ts for of loops code example
Example 1: angular 7 for loop index ts
for (let i = 0; i < 3; i++) {
console.log ("Block statement execution no." + i);
}
Example 2: create an array for looping typescript
loopTimes: number[] = Array(31);
for (let x = 0; x < loopTimes.length; x++) {
console.log('Index/Loop No: ', [x]);
// Do something here...
}