Skip to content

Instantly share code, notes, and snippets.

@mteece
Last active September 28, 2015 03:07
Show Gist options
  • Save mteece/1374445 to your computer and use it in GitHub Desktop.
Save mteece/1374445 to your computer and use it in GitHub Desktop.
(function(){
// FizzBuzz
for(var i=1; i<=100; i++) {
var fizz = (i % 3 == 0 ? "fizz" : "") + (i % 5 == 0 ? "buzz" : "");
console.log(fizz == "" ? i : fizz);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment