startGame();
function moveCells(direction) {} // 숫자 이동 함수 선언
window.addEventListener('keyup', (event) => { // 키보드 이벤트 등록
if (event.key === 'ArrowUp') {
moveCells('up');
} else if (event.key === 'ArrowDown') {
moveCells('down');
} else if (event.key === 'ArrowLeft') {
moveCells('left');
} else if (event.key === 'ArrowRight') {
moveCells('right');
}
});
마우스가 움직인 방향을 판단할 때는 mousedown과 mouseup 이벤트만 필요합니다.