Skip to content

Instantly share code, notes, and snippets.

@shawnz
Created July 11, 2020 20:41
Show Gist options
  • Save shawnz/1c40b445fa9a6b0cf5df488066271583 to your computer and use it in GitHub Desktop.
Save shawnz/1c40b445fa9a6b0cf5df488066271583 to your computer and use it in GitHub Desktop.
for (var i = 1; i <= 100; i++) {
var k = 810092048 >> (i - 1) % 15 * 2 & 3,
s = "";
if (k & 1) s += "Fizz";
if (k > 1) s += "Buzz";
console.log(s || i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment