Remplissez le tableau avec 0 javascript

const arrayWithZeros = Array(4).fill(0) // ES6!
console.log(arrayWithZeros) // [0, 0, 0, 0]
I_Like_Cats__