함수의 호출을 지연하거나, 반복적으로 호출할 수 있는 함수를 설명한다.
const hello = () => {
console.log('Hello~')
}
setTimeOut(() => {
console.log('Hello~');
}, 2000)
const timeOut = setTimeOut(hello, 2000);
const timeOut2 = setInterval(hello, 2000);
clearTimeout(timeOut);
:setTimeOut를 통해 함수 호출을 스케쥴링을 할 수 있다.
:setInterval을 통해 주기를 설정하여 함수를 호출할 수 있다.