1// Get a reference to the timeout and call wwindow.clearTimeout() on
2// that refrence.
3let timeoutHandle = window.setTimeout(...);
4
5window.clearTimeout(timeoutHandle);
1The clearTimeout() method of the WindowOrWorkerGlobalScope mixin cancels a timeout previously established by calling setTimeout().