Created
October 8, 2019 11:27
-
-
Save PetterRuud/94e943bb1b1a4d3ee40623c6e8f726b4 to your computer and use it in GitHub Desktop.
This file contains 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
map(['๐ฎ','๐ ', '๐', '๐ฝ'], cook); | |
=> ['๐', '๐', '๐', '๐ฟ']; | |
filter(['๐', '๐', '๐', '๐ฟ'], isVegetarian); | |
=> ['๐', '๐ฟ']; | |
reduce(['๐', '๐', '๐', '๐ฟ'], eat); | |
=> ['๐ฉ']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Love it