Created
December 21, 2017 07:47
-
-
Save gabssnake/a158356462a7850f880edaa5c1b25154 to your computer and use it in GitHub Desktop.
FizzBuzz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Separate rules from work | |
const rules = { '3': 'Fizz', '5': 'Buzz' } | |
const fbuzz = i => Object.keys(rules).reduce((s, n) => s + (i % n ? '' : rules[n]), '') || i | |
for (let i = 1; i <= 100; i++) console.log(fbuzz(i)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment