Skip to content

Instantly share code, notes, and snippets.

@sbauch
Last active December 30, 2015 19:29
Show Gist options
  • Select an option

  • Save sbauch/7874478 to your computer and use it in GitHub Desktop.

Select an option

Save sbauch/7874478 to your computer and use it in GitHub Desktop.
js launch sequence
console.log('Starting Launch Sequence...');
(function launchSequence (i) {
setTimeout(function () {
console.log(i);
if (--i){
launchSequence(i);
}
else {
setTimeout(console.log('BLAST OFF!'), 1000);
}
}, 1000)
})(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment