create array from number javascript code example

Example 1: es6 create array with increasing number

Array.from(Array(10).keys())
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Example 2: 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 3: 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 4: create array javascript numbers

[...Array(5).keys()];
 => [0, 1, 2, 3, 4]

Example 5: create array with number js

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

Tags:

Misc Example