Skip to content

Instantly share code, notes, and snippets.

@panicbus
Last active November 15, 2017 18:13
Show Gist options
  • Save panicbus/ab2309bdb4e3f6af4fe4191ac8ca127a to your computer and use it in GitHub Desktop.
Save panicbus/ab2309bdb4e3f6af4fe4191ac8ca127a to your computer and use it in GitHub Desktop.
Two variations of FizzBuzz
for (var i = 0; i < 101; i++){
console.log(i);
if (i % 3 === 0 && i % 5 === 0)
console.log("fizzbuzz");
else if
(i % 5 === 0)
console.log("buzz");
else if
(i % 3 === 0)
console.log("fizz");
}
for (var i = 0; i < 101; i++){
var f = i % 3 === 0, b = i % 5 === 0;
console.log(f ? b ? "FizzBuzz" : "Fizz" : b ? "Buzz" : i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment