how to create an empty array and fill it javascript code example
Example: javascript fill array
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]