Timer control

From SmartBots Developers Docs
Jump to: navigation, search

Standard timer control routines of JavaScript: setTimeout, setInterval etc.

setTimeout(function() { console.log("This is a timer event!"); }, 5000);

You can use standard JavaScript timer routines: