Skip to content

Instantly share code, notes, and snippets.

@kevincennis
Created March 16, 2013 05:27
Show Gist options
  • Save kevincennis/5175117 to your computer and use it in GitHub Desktop.
Save kevincennis/5175117 to your computer and use it in GitHub Desktop.
64 char fizzbuzz
for(i=0;++i<100;)console.log((i%3?'':'Fizz')+(i%5?'':'Buzz')||i)
@kevincennis
Copy link
Author

Technically, this works too:

for(i=0;++i<100;)debug((i%3?'':'Fizz')+(i%5?'':'Buzz')||i)

Not sure which browsers support debug, but that cuts it to 58 characters.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment