Skip to content

Instantly share code, notes, and snippets.

@vstarck
Created September 14, 2012 19:26
Show Gist options
  • Save vstarck/3724147 to your computer and use it in GitHub Desktop.
Save vstarck/3724147 to your computer and use it in GitHub Desktop.
FizzBuzz
function fb(i) {
i > 0 && (
console.log(
(!(i%3) && 'Fizz' || '') +
(!(i%5) && 'Buzz' || '') ||
i
), fb(i - 1)
);
}
fb(100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment