for of loop in ts code example
Example 1: object iteration in typescript
Object.entries(obj).forEach(
([key, value]) => console.log(key, value);
);
Example 2: for of loop in ts with index
const someArray = [9, 2, 5];
someArray.forEach((value, index) => {
console.log(index);
console.log(value);
});
Example 3: create an array for looping typescript
loopTimes: number[] = Array(31);
for (let x = 0; x < loopTimes.length; x++) {
console.log('Index/Loop No: ', [x]);
}
Example 4: ts for
for { let item of itemList} {
}
for { let key in itemList} {
}
for {let i = 0; i < 10; _i++}{
}