mdn array.fiill code example
Example 1: javascript fill array
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
Example 2: js create array with default value
Array(24).fill(0)
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
Array(24).fill(0)