Baseline Widely available
Note: This feature is only available in Web Workers.
The clearTimeout()
method of the WorkerGlobalScope
interface cancels a timeout previously established by calling WorkerGlobalScope.setTimeout()
.
If the parameter provided does not identify a previously established action, this method does nothing.
Syntax ParameterstimeoutID
The identifier of the timeout you want to cancel. This ID was returned by the corresponding call to setTimeout()
.
It's worth noting that the pool of IDs used by setTimeout()
and setInterval()
are shared, which means you can technically use clearTimeout()
and clearInterval()
interchangeably. However, for clarity, you should avoid doing so.
None (undefined
).
See Window.clearTimeout()
for examples.
Passing an invalid ID to clearTimeout()
silently does nothing; no exception is thrown.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4