더북(TheBook)
function tick() {
  holes.forEach((hole, index) => {
    if (hole) { // 무언가 일어나고 있으면 return
      return; 
    }
    const $bomb = $$cells[index].querySelector('.bomb');
    holes[index] = setTimeout(() => { // 1초 뒤에 사라짐
       $bomb.classList.add('hidden');
      holes[index] = 0;
    }, 1000);
    $bomb.classList.remove('hidden');
  });
}
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.