Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

setInterval - scheduled execution

  • setInterval

  • setInterval allows for repeated calls. We can stop this infinite calling using Ctrl-C.

setInterval(function() {
    console.log("world");
}, 1000);
console.log("hello");

$ node examples/basic/with_interval.js
hello
world
world
world
^C