Skip to content

Instantly share code, notes, and snippets.

@thmain
Created December 25, 2022 05:30
Embed
What would you like to do?
function add10 (a) {
return a + 10
}
function compound (f) {
return function (b) {
return f(f(b))
}
}
console.log( add10(10) ) // 20
console.log( compound(add10)(10) ) // 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment