fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,22 @@
---
title: Window clearInterval Method
---
## Window clearInterval Method
The 'clearInterval()' method is used to clear a timer set with the 'setInterval()' method.
```js
clearInterval(setInteval_ID);
```
To be able to use the 'clearInterval()' method, you must use a global variable.
```js
myID = setInterval(function, milliseconds);
```
#### More Information:
<!-- Please add any articles you think might be helpful to read before writing the article -->
Documentation: <a href='https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/clearInterval' target='_blank' rel='nofollow'>MDN</a>
Some more examples on <a href='https://www.w3schools.com/jsref/met_win_clearinterval.asp' target='_blank' rel='nofollow'>w3schools</a>