Skip to content

Instantly share code, notes, and snippets.

@miguelludert
Created March 24, 2016 05:24
Show Gist options
  • Save miguelludert/f0484df9674ab82eb650 to your computer and use it in GitHub Desktop.
Save miguelludert/f0484df9674ab82eb650 to your computer and use it in GitHub Desktop.
Fizz Buzz
var r=[],i=1;for(;i<101;i++)r.push(((i%3?'':'fizz')+((i%5)?'':'buzz'))||i);console.log(r);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment