Created
May 31, 2014 15:49
-
-
Save a1ip/6d6b6a5c962d70c4dccb to your computer and use it in GitHub Desktop.
Sortest JavaScript FizzBuzz one-liner from http://rosettacode.org/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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