nav-title | title | description |
---|---|---|
timer How-To |
How-To |
Examples for using timer |
require("globals");
// OR
var timer = require("timer");
timer.setTimeout(function () {
});
timer.setTimeout(function () {
}, 500);
var id = timer.setTimeout(function () {
}, 2000);
// Clear timeout with specified id.
timer.clearTimeout(id);
timer.setInterval(function () {
}, 100);
var id = timer.setInterval(function () {
timer.clearInterval(id);
}, 100);