Last active
October 26, 2019 12:03
-
-
Save jasongorman/6beddff878f20f62f58f0d41e0b49e42 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 generateList = () => { | |
| return [] | |
| } | |
| const fizz = (number) => { | |
| } | |
| const buzz = (number) => { | |
| } | |
| const fizzBuzz = (number) => { | |
| } | |
| const output = generateList().map( | |
| (number) => fizz(buzz(fizzBuzz(number)))) | |
| console.log(output.toString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment