files/en-us/web/api/window/clearinterval/index.md
{{APIRef("HTML DOM")}}
The clearInterval() method of the {{domxref("Window")}} interface cancels a timed, repeating action which was previously established by a call to {{domxref("Window.setInterval", "setInterval()")}}. If the parameter provided does not identify a previously established action, this method does nothing.
clearInterval(intervalID)
intervalID
setInterval().It's worth noting that the pool of IDs used by
{{domxref("Window.setInterval", "setInterval()")}} and
{{domxref("Window.setTimeout", "setTimeout()")}} are shared, which
means you can technically use clearInterval() and
{{domxref("Window.clearTimeout", "clearTimeout()")}} interchangeably.
However, for clarity, you should avoid doing so.
None ({{jsxref("undefined")}}).
See {{domxref("Window.setInterval", "setInterval()")}} for examples.
{{Specifications}}
{{Compat}}