Skip to content

Instantly share code, notes, and snippets.

@vstarck
Created October 4, 2012 20:02
Show Gist options
  • Save vstarck/3836054 to your computer and use it in GitHub Desktop.
Save vstarck/3836054 to your computer and use it in GitHub Desktop.
FizzBuzz
(function r(i, to) {
console.log(
(['Fizz'][i%5] || '') +
(['Buzz'][i%3] || '') ||
i
);
if (i < to) r(i + 1, to);
})(1, 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment