f
clearInterval
Cancels a timed, repeating action which was previously started by a call
to setInterval()
f
clearTimeout
Cancels a scheduled action initiated by setTimeout()
f
setInterval
Repeatedly calls a function , with a fixed time delay between each call.
f
setTimeout
Sets a timer which executes a function once after the delay (in milliseconds) elapses. Returns an id which may be used to cancel the timeout.