JavaScript создайте массив с нулевыми значениями

const arr = new Array(5).fill(null);
Coder Cuttlefish