Last active
April 26, 2021 15:39
-
-
Save JestVA/6d5cf1fd5f2c8f89002c0c670fdc18c6 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
// "The greatest invention of | |
// manking is the concept | |
// of variable" - 🗝 Alonzo Church | |
const showJoy = expressJoy => joy => | |
expressJoy(joy.toUpperCase() + '!!!') | |
const functionalJoy = showJoy((message => | |
console.log(message))) | |
functionalJoy('This was long overdue!') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment