Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Created March 9, 2017 12:02
Show Gist options
  • Select an option

  • Save theWhiteFox/f1cf1f259a51531b7ee76b2b57fcddae to your computer and use it in GitHub Desktop.

Select an option

Save theWhiteFox/f1cf1f259a51531b7ee76b2b57fcddae to your computer and use it in GitHub Desktop.
for (var index = 1; index <= 15; index++) {
console.log(((['Fizz'][index % 3] || '') + (['Buzz'][index % 5] || '')) || index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment