Skip to content

Instantly share code, notes, and snippets.

@ryu1-1uyr
Created May 6, 2018 16:53
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 ryu1-1uyr/6519942f8cde14b2df8eb74177ae2891 to your computer and use it in GitHub Desktop.
Save ryu1-1uyr/6519942f8cde14b2df8eb74177ae2891 to your computer and use it in GitHub Desktop.
普通の書き方...
for(let i=0;i<=100;i++){i%3==0?i%5==0?console.log("FizzBuzz"):console.log("Fizz"):i%5==0?console.log("buzz"):console.log(i)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment