for loop



examples/basic/for_loop.js
for (let ix = 0; ix < 5; ix++) {
    console.log(ix);
}

0
1
2
3
4