setTimeout(function () { console.log('OROSY!) }, 3000) // 3000ms = 3s, 3초 후 함수 실행 const timer = setTimeout(() => { console.log('OROSY!') }, 3000) // 위와 같은 함수로 화살표 함수를 이용하여 실행(timer 변수에 저장)
-HTML- <h1>Hello world!</h1>
-JavaScript- const h1El = document.querySelector('h1') h1El.addEventListener('click', () => { clearTimeout(timer) })