js generate array code example
Example 1: create range array javascript
[...Array(10).keys()]
Example 2: es6 create array with increasing number
Array.from(Array(10).keys())
Example 3: javascript fill array with range
function range(start, end) {
return Array(end - start + 1).fill().map((_, idx) => start + idx)
}
var result = range(9, 18);
console.log(result);
Example 4: generate array range
for (i of range(1, 5)) {
console.log(i);
}
[...range(1, 5)]
Example 5: list from 1 to 100 js
[...Array(100).keys()]