Skip to content

Instantly share code, notes, and snippets.

@cloneko
Created June 18, 2014 17:02
Show Gist options
  • Save cloneko/d6e42a95818f91f58597 to your computer and use it in GitHub Desktop.
Save cloneko/d6e42a95818f91f58597 to your computer and use it in GitHub Desktop.
もっと駄目な感じのfizzbuzz
var end = 150;
for (var i = 0; i <= end;i++){
console.log(function(){
return (i % 15) == 0 ? 'FizzBuzz' : (i % 5) == 0 ? 'Buzz' : (i % 3) == 0 ? 'Fizz' : i;
}());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment