diff options
author | Adam Brenecki <adam@brenecki.id.au> | 2013-09-13 20:21:14 +0930 |
---|---|---|
committer | Adam Brenecki <adam@brenecki.id.au> | 2013-09-13 20:21:14 +0930 |
commit | 9d1015232c1c5cf90ccc8d4807d8c4216a2406dc (patch) | |
tree | ee3455e1277ea4e884d7bac94e662a92762b3e5c | |
parent | 3f9ba06563c580c4795228a822475bf305d5b694 (diff) |
Wrapped setTimeout note to 80 chars
-rw-r--r-- | javascript.html.markdown | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index 859d61a9..2f742574 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -219,7 +219,8 @@ function myFunction(){ // this code will be called in 5 seconds' time } setTimeout(myFunction, 5000); -// Note: setTimeout isn't part of the JS language, but is provided by browsers and Node.js. +// Note: setTimeout isn't part of the JS language, but is provided by browsers +// and Node.js. // 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. |