JavaScript Crear matriz con valores nulos

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