21.04.15 TIL

J·2021년 4월 15일
0

다차원 배열(행렬) 만드는 방법 1

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]
		]

2

let arr = new Array(index + 1).fill(0).map(el => new Array(index + 1).fill(0))

0개의 댓글