Skip to content

Instantly share code, notes, and snippets.

@Hupotronic
Created September 30, 2012 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hupotronic/3808231 to your computer and use it in GitHub Desktop.
Save Hupotronic/3808231 to your computer and use it in GitHub Desktop.
Small FizzBuzz in JavaScript. Because I felt like it.
for(var s,i=0;i++<100;){
s=''
s+=i%3?'':'Fizz'
s+=i%5?'':'Buzz'
s=s?s:i
console.log(s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment