new Array . fill 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 fill array with count elements
Array(3).fill(4); // [4, 4, 4]
const fill = new Array(5).fill(0)
console.log(fill) // [ 0,0,0,0,0]
Array(3).fill(4); // [4, 4, 4]