Created
December 15, 2012 19:09
-
-
Save cbumgard/4298256 to your computer and use it in GitHub Desktop.
another javascript fizzbuzz
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
var fizz, buzz, fizzbuzz, n; | |
for (n = 1; n <= 100; n++) { | |
fizz = !(n % 3); | |
buzz = !(n % 5); | |
fizzbuzz = fizz && buzz; | |
console.log( | |
fizzbuzz ? 'FizzBuzz' : | |
(fizz ? 'Fizz' : | |
(buzz ? 'Buzz' : n))); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment