Skip to content

Instantly share code, notes, and snippets.

@fiso
Created May 10, 2017 11:46
Show Gist options
  • Save fiso/0f60e30c814d1bf807a5fb85dce823d4 to your computer and use it in GitHub Desktop.
Save fiso/0f60e30c814d1bf807a5fb85dce823d4 to your computer and use it in GitHub Desktop.
console.log(
[...Array(100).keys()].map(n => n + 1).map(n =>
(n % 3 ? "" : "Fizz") + (n % 5 ? "" : "Buzz") || n
).join("\n"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment