Skip to content

Instantly share code, notes, and snippets.

@jugglinmike
Last active February 20, 2016 16:54
Show Gist options
  • Save jugglinmike/5126865 to your computer and use it in GitHub Desktop.
Save jugglinmike/5126865 to your computer and use it in GitHub Desktop.
FizzBuzz
(function() {
var fb, i;
(fb = "Fizz Buzz ".split(" ")).unshift(fb.join(""));
for (i = 1; i < 101; ++i) {
console.log(fb[(i % 3 && 2) + (i % 5 && 1)] || i);
}
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment