Skip to content

Instantly share code, notes, and snippets.

@robotlolita
Created January 18, 2011 19:31
Show Gist options
  • Save robotlolita/784978 to your computer and use it in GitHub Desktop.
Save robotlolita/784978 to your computer and use it in GitHub Desktop.
(function(){
var interval
, count = 0
interval = setInterval(function(){ console.log(++count) }, 1000)
setTimeout(function(){ clearInterval(interval) }, 5000)
})();
// should count up to 4/5 and stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment