Skip to content

Instantly share code, notes, and snippets.

@a1ip
Created May 31, 2014 16:08
Show Gist options
  • Select an option

  • Save a1ip/7a6e3ca0f8cf658a2355 to your computer and use it in GitHub Desktop.

Select an option

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