create array with numbers javascript code example

Example 1: javascript fill array with range

function range(start, end) {
  return Array(end - start + 1).fill().map((_, idx) => start + idx)
}
var result = range(9, 18); // [9, 10, 11, 12, 13, 14, 15, 16, 17, 18]
console.log(result);

Example 2: generate array range

for (i of range(1, 5)) {
    console.log(i);
}
/* Output
 * 1 2 3 4 5 */

[...range(1, 5)] // [1, 2, 3, 4, 5]

Example 3: create array with number js

var foo = new Array(45); // create an empty array with length 45

Example 4: building an array of a numbers javascript

const arr = [...Array(2)] // output [undefined, undefined]