Last active
February 23, 2019 19:43
-
-
Save eprislac/128781302f8e926989073312480270ff to your computer and use it in GitHub Desktop.
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
(() => { | |
const fizzbuzziness = | |
num => `${ num % 3 === 0 ? 'Fizz' : '' }${ num % 5 === 0 ? 'Buzz' : '' }` | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment