diff options
author | Sawyer Charles <xssc@users.noreply.github.com> | 2015-10-19 10:54:42 -0500 |
---|---|---|
committer | Gabriel SoHappy <czh.gabriel@gmail.com> | 2015-10-21 02:05:37 +0800 |
commit | 8b9c5561e7af0c5caca83ac13d306d756d6f227f (patch) | |
tree | f48c821e9aa66529b72117c632104e91668f8214 | |
parent | f4c1f3d9475167c6c6447b6bdac54104d92e6515 (diff) |
[javascript/en] Added setInterval
Added the setInterval function provided by most browsers
-rw-r--r-- | javascript.html.markdown | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index d408e885..22a2959c 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -310,6 +310,12 @@ setTimeout(myFunction, 5000); // Note: setTimeout isn't part of the JS language, but is provided by browsers // and Node.js. +// Another function provided by browsers is setInterval +function myFunction(){ + // this code will be called every 5 seconds +} +setInterval(myFunction(), 5000); + // Function objects don't even have to be declared with a name - you can write // an anonymous function definition directly into the arguments of another. setTimeout(function(){ |