#05 Clock wiki - azureun/JS-Chrome-App GitHub Wiki

setTimeout() ν•¨μˆ˜ μ „μ—­ setTimeout() λ©”μ„œλ“œλŠ” 만료된 ν›„ ν•¨μˆ˜λ‚˜ μ§€μ •ν•œ μ½”λ“œ 쑰각을 ν•œ 번 μ‹€ν–‰ν•˜λŠ” 타이머λ₯Ό μ„€μ •.

ꡬ문

setTimeout(code)
setTimeout(code, delay)

setTimeout(functionRef)
setTimeout(functionRef, delay)
setTimeout(functionRef, delay, param1)
setTimeout(functionRef, delay, param1, param2)
setTimeout(functionRef, delay, param1, param2, /* … ,*/ paramN)

μ˜ˆμ‹œ

function sayHello(){
    console.log("hello");
}

setInterval(sayHello, 5000);    //5μ΄ˆμ— 1λ²ˆμ”© hello 좜λ ₯