Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created March 13, 2020 05:46
Show Gist options
  • Save jsmanifest/0c0fd63c21444199b143af7da5714202 to your computer and use it in GitHub Desktop.
Save jsmanifest/0c0fd63c21444199b143af7da5714202 to your computer and use it in GitHub Desktop.
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