for loop
- for
for (let ix = 0; ix < 5; ix++) {
console.log(ix);
}
0
1
2
3
4
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
for (let ix = 0; ix < 5; ix++) {
console.log(ix);
}
0
1
2
3
4