Skip to content

Instantly share code, notes, and snippets.

@cbumgard
Created December 15, 2012 19:09
Show Gist options
  • Save cbumgard/4298256 to your computer and use it in GitHub Desktop.
Save cbumgard/4298256 to your computer and use it in GitHub Desktop.
another javascript fizzbuzz
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