Skip to content

Instantly share code, notes, and snippets.

@ZeroX-DG
Last active May 6, 2017 03:07
Show Gist options
  • Save ZeroX-DG/4456ceb1f0d8036e387292b36b8196fa to your computer and use it in GitHub Desktop.
Save ZeroX-DG/4456ceb1f0d8036e387292b36b8196fa to your computer and use it in GitHub Desktop.
for(var i = 1; i < 30; i++){
console.log((i % 3 ? x = '' : 'Fizz')+(i % 5 ? x: 'Buzz') || x+i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment