Skip to content

Instantly share code, notes, and snippets.

@Polyrhythm
Created December 12, 2013 01:28
Show Gist options
  • Save Polyrhythm/7921780 to your computer and use it in GitHub Desktop.
Save Polyrhythm/7921780 to your computer and use it in GitHub Desktop.
counterVal = 4
tick() ->
if counterVal !== 1
# logic each countdown tick
counterVal--
setTimeout tick, 1000
else
# breaking case - callback on countdown completion
console.log 'all finished, fucknuts'
tick()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment