To schedule execution of a one-time callback after delay milliseconds. Returns a
timeoutId for possible use with clearTimeout(). Optionally you can
also pass arguments to the callback.
Prevents a timeout from triggering.
To schedule the repeated execution of callback every delay milliseconds.
Returns a intervalId for possible use with clearInterval(). Optionally
you can also pass arguments to the callback.
Stops a interval from triggering.