Skip to content

Instantly share code, notes, and snippets.

@MCalligaris
Created July 11, 2013 14:14
Show Gist options
  • Save MCalligaris/5975810 to your computer and use it in GitHub Desktop.
Save MCalligaris/5975810 to your computer and use it in GitHub Desktop.
FizzBuzz 62 chars
for(i=0;++i<101;console.log(i%5?f||i:f+'Buzz'))f=i%3?'':'Fizz'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment