Functions
clearTimeout
clearTimeout(id?): void
The global clearTimeout() method clears a timer set with the setTimeout() method.
Parameters
| Parameter | Type | Description |
|---|---|---|
id? | number | The ID of the timer you want to clear, as returned by setTimeout(). |
Returns
void