Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 31, 2014 15:49
Show Gist options
  • Select an option

  • Save a1ip/6d6b6a5c962d70c4dccb to your computer and use it in GitHub Desktop.

Select an option

Save a1ip/6d6b6a5c962d70c4dccb to your computer and use it in GitHub Desktop.
Sortest JavaScript FizzBuzz one-liner from http://rosettacode.org/
for(i=0;i<100;console.log(++i%15?i%5?i%3?i:f='Fizz':b='Buzz':f+b));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment