iterate over number javascript code example
Example 1: javascript create range with a loop
function createRange(min, max) {
var range = [];
for (let i = min; i <= max; i++) {
range.push(i);
}
return range;
}
createRange(1, 5)
// => [1, 2, 3, 4, 5]
Example 2: for of loop syntax javascript
for (let step = 0; step < 5; step++) {
// Runs 5 times, with values of step 0 through 4.
console.log('Walking east one step');
}