callback: Function([args..])
delay: Int
- Return:
timeoutObject
Schedules to call one-time to callback
function after delay
milliseconds.
timeoutObject: timeoutObject
- AtimeoutObject
returned fromsetTimeout()
Disables timeout call from setTimeout
method.
callback: Function([args..])
delay: Int
- Return:
intervalObject
Schedules to call periodic to callback
function after every delay
milliseconds.
intervalObject: intervalObject
- AintervalObject
returned fromsetInterval
Disables timeout call from setInterval
method.