javascript create array of 1's code example
Example 1: how to fill array with consecutive numbers javascript
Array.from({length: n}, (_, i) => i + 1)
//=> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Example 2: list from 1 to 100 js
[...Array(100).keys()]
//=> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]