Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Adding link to MDN docs for window.setTimeout()
  • Loading branch information
ryanmurakami authored Jun 30, 2016
commit afa516798b2a0d42baee02beb8f855509076feb5
3 changes: 2 additions & 1 deletion doc/guides/timers-in-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ API, there are some differences in implementation.
### "When I say so" Execution ~ *`setTimeout()`*

`setTimeout()` can be used to schedule code execution after a designated
amount of milliseconds. This function is similar to `window.setTimeout()`
amount of milliseconds. This function is similar to [`window.setTimeout()`]
(https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setTimeout)
from the browser JavaScript API, however a string of code cannot be passed
to be executed.

Expand Down