Skip to content

Instantly share code, notes, and snippets.

@jhuttner
Created January 16, 2012 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhuttner/1619424 to your computer and use it in GitHub Desktop.
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