let result = [];
for (let i = 0; i < maxIndex; i++) { // maxIndex는 해당 배열에서 count할 수 있는 최대의 index 값을 의미함
// ex) 총 길이가 4인 배열의 최대 idx는 3 -> maxIndex === 3
result[i].push(0);
}
result.push(new Array(maxIndex + 1).fill(0));
[
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0],
[0, 0, 0, 0]
]
let arr = new Array(index + 1).fill(0).map(el => new Array(index + 1).fill(0))