Created
March 13, 2020 05:46
-
-
Save jsmanifest/0c0fd63c21444199b143af7da5714202 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
function append(str, modify = (s) => s) { | |
return `hello ${modify(str)}` | |
} | |
function capitalize(value) { | |
return value.toUpperCase() | |
} | |
const result = append('boss', capitalize) // 'hello BOSS' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment