js로 2차원 배열 만들기

var arr = Array(4)
  .fill(null)
  .map(() => Array(15).fill(false));

Last updated

Was this helpful?