# Timer control

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

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

You can use standard JavaScript timer routines:

* `setTimeout()`
* `clearTimeout()`
* `setInterval()`
* `clearInterval()`