Skip to content

Instantly share code, notes, and snippets.

@jhuttner
Created January 16, 2012 06:37
Show Gist options
  • Select an option

  • Save jhuttner/1619424 to your computer and use it in GitHub Desktop.

Select an option

Save jhuttner/1619424 to your computer and use it in GitHub Desktop.
alerter.js
function alerter(start, finish) {
for (var i=0; i<=5; i++) {
setTimeout(function() {
alert(i);
}, i*1000)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment