Isi berbagai nol di JS

const array = new Array(5).fill(0);

console.log(array);

// [0, 0, 0, 0, 0]
Adventurous Armadillo