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');
});
}