Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created January 24, 2019 10:41
Show Gist options
  • Save andreasvirkus/7cc8a7c631f2b38f86684b4b41f7fab9 to your computer and use it in GitHub Desktop.
Save andreasvirkus/7cc8a7c631f2b38f86684b4b41f7fab9 to your computer and use it in GitHub Desktop.
for (var i = 1; i <= 100; i++) console.log((i % 3 ? "" : "Fizz") + (i % 5 ? "" : "Buzz") || i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment