Skip to content

Instantly share code, notes, and snippets.

@abelevtsov
Last active May 31, 2016 18:47
Show Gist options
  • Save abelevtsov/e77bd2f8af39ff82a239946128b6018f to your computer and use it in GitHub Desktop.
Save abelevtsov/e77bd2f8af39ff82a239946128b6018f to your computer and use it in GitHub Desktop.
for (var s, i = 1; i < 1001; i++) s = "", (i % 3 || (s += "Fizz")), (i % 5 || (s += "Buzz")), console.log(s || i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment