fill array with number js code example
Example 1: javascript fill array
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
Example 2: 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]