clearInterval()
Published May 29, 2023
Contribute to Docs
clearInterval()
is a window method used to shut down the loop-calling process of a setInterval()
execution when it must be stopped or aborted.
Syntax
clearInterval()
receives a parameter called intervalId
which is returned from the previously created setInterval()
timer.
The below is an example of how clearInterval()
is composed:
clearInterval(intervalID)
Example
The following code demonstrates the application of clearInterval()
to cancel a previously added setInterval()
call.
let firstInterval = setInterval(firstTimer, 2000);function firstTimer() {document.body.innerHTML = 'Hello world from Javascript';clearInterval(firstInterval);}firstTimer();
In the example above, a 2-second interval is added using setInterval()
, but in the function call, clearInterval()
cancels it.
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.