Skip to content

Instantly share code, notes, and snippets.

@ryu1-1uyr
Created May 10, 2018 05:48
Show Gist options
  • Save ryu1-1uyr/79608270d0f6babd7b5d944bc33df7b9 to your computer and use it in GitHub Desktop.
Save ryu1-1uyr/79608270d0f6babd7b5d944bc33df7b9 to your computer and use it in GitHub Desktop.
配列をつくってそのkeyをつかったfizzbuzz!
[...Array(31).keys()].filter(f=>(f>0)).forEach((i)=>{console.log(i%3==0?i%5==0?"fizz buzz":"fizz":i%5==0?"buzz":i)})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment