Skip to content

Instantly share code, notes, and snippets.

@TinyExplosions
Created July 22, 2020 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TinyExplosions/47b712f6d10b6691a0658c9be15c64a2 to your computer and use it in GitHub Desktop.
Save TinyExplosions/47b712f6d10b6691a0658c9be15c64a2 to your computer and use it in GitHub Desktop.
console.log(
Array.apply(0, Array(20)).map(function (x, y) {
let fizz = { 0: "Fizz" }[y % 3] || "";
let buzz = { 0: "Buzz" }[y % 5] || "";
return fizz + buzz || y.toString();
}).join("\n")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment