const twoDarray = Array(3).fill(0).map(x => Array(3).fill(0));
console.log(twoDarray);
// [[0, 0, 0], [0, 0, 0], [0, 0, 0]]
Categories
const twoDarray = Array(3).fill(0).map(x => Array(3).fill(0));
console.log(twoDarray);
// [[0, 0, 0], [0, 0, 0], [0, 0, 0]]