Skip to content

Instantly share code, notes, and snippets.

@denchistyakov
Created December 16, 2013 06:54
Show Gist options
  • Save denchistyakov/7983259 to your computer and use it in GitHub Desktop.
Save denchistyakov/7983259 to your computer and use it in GitHub Desktop.
function Scheduler() {
this._i = 0
}
Scheduler.prototype = {
tick: function() {
this._i++
}
}
var scheduler = new Scheduler
setInterval(scheduler.tick, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment