Skip to content

Instantly share code, notes, and snippets.

@2no
Created August 8, 2012 07:34
Show Gist options
  • Save 2no/3293183 to your computer and use it in GitHub Desktop.
Save 2no/3293183 to your computer and use it in GitHub Desktop.
FizzBuzz test
for(var i=1;i<=100;i++)console.log((i%3?"":"Fizz")+(i%5?"":"Buzz")||i)
i=0;while(++i<=100)console.log((i%3?"":"Fizz")+(i%5?"":"Buzz")||i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment