f
f
clearInterval
Cancels a timed, repeating action which was previously started by a call
to setInterval()
f
f
f
f
f
queueMicrotask
A microtask is a short function which is executed after the function or module which created it exits and only if the JavaScript execution stack is empty, but before returning control to the event loop being used to drive the script's execution environment. This event loop may be either the main event loop or the event loop driving a web worker.
f
f
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.
f