create array 1 to n javascript code example

Example 1: create an array from 1 to n javascript

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

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

Array.from({length: 10}, (_, i) => i + 1)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Example 2: js array of 1 to n

[...Array(10).keys()]

Example 3: es6 create array with increasing number

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

Example 4: 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 5: javascript create array from 1 to n

// Javascript create array from 1 to n 

[...Array(n+1).keys()].slice(1)

// E.g. for n = 10:
// [...Array(11).keys()].slice(1)
// => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Tags:

Misc Example