node js loops code example
Example 1: for loop in node js
var i;
for (i = 0; i < cars.length; i++) {
text += cars[i] + "<br>";
}
Example 2: js for
for (let step = 0; step < 5; step++) {
// Runs 5 times, with values of step 0 through 4.
console.log(step);
}
0
1
2
3
4