javascript fill array with numbers code example
Example 1: es6 create array with increasing number
Array.from(Array(10).keys())
Example 2: fill array with values javascript
let filledArray = new Array(10).fill({'hello':'goodbye'});
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)]