Skip to content

Instantly share code, notes, and snippets.

@niklatkin
Created May 3, 2018 16:19
Show Gist options
  • Save niklatkin/cb1507de2911da573e2b4b6d8722b032 to your computer and use it in GitHub Desktop.
Save niklatkin/cb1507de2911da573e2b4b6d8722b032 to your computer and use it in GitHub Desktop.
for (var i = 1; i <= 100; 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