Skip to content

Instantly share code, notes, and snippets.

@kobaken0029
Created April 22, 2016 03:14
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 kobaken0029/930a1915dbf94d1fd322db7d77304325 to your computer and use it in GitHub Desktop.
Save kobaken0029/930a1915dbf94d1fd322db7d77304325 to your computer and use it in GitHub Desktop.
JavaScriptでワンライナーfizzbuzz
for(var i=1;i<101;i++) console.log((i%3?'':'fizz')+(i%5?'':'buzz')||i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment