더북(TheBook)

다음은 지뢰를 클릭할 때 전체 지뢰의 위치를 보여 주는 부분입니다.

function showMines() {
  const mines = [CODE.MINE, CODE.QUESTION_MINE, CODE.FLAG_MINE];
  data.forEach((row, rowIndex) => {
    row.forEach((cell, cellIndex) => {
      if (mines.includes(cell)) {
        $tbody.children[rowIndex].children[cellIndex].textContent = 'X';
      }
    });
  });
}
function onLeftClick(event) {
  (중략)
  } else if (cellData === CODE.MINE) { // 지뢰 칸이면
    showMines();
    target.textContent = '펑';
    (중략)
  } // 나머지는 무시
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.