Cancel an interval execution
Cancel an interval execution
The handle returned by setInterval
Cancel a timeout execution
Cancel a timeout execution
The handle returned by setTimeout
Tests whether this object has the specified property as a direct property.
Tests whether this object has the specified property as a direct property.
Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.
MDN
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.
Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.
MDN
Schedule handler
for repeated execution every interval
milliseconds.
Schedule handler
for repeated execution every interval
milliseconds.
the function to call after each interval
duration in milliseconds between executions
A handle that can be used to cancel the interval by passing it to clearInterval.
Schedule handler
for execution in interval
milliseconds.
Schedule handler
for execution in interval
milliseconds.
the function to call after interval
has passed
duration in milliseconds to wait
A handle that can be used to cancel the timeout by passing it to clearTimeout.
Non-Standard Raw JavaScript timer methods.
The methods on this object expose the raw JavaScript methods for timers. In general it is more advisable to use the methods directly defined on timers as they are more Scala-like.