Skip to content

Instantly share code, notes, and snippets.

@bpinedah
Created December 10, 2018 19:53
Show Gist options
  • Save bpinedah/8bd0a520ef636c1a1c863aed4ea780ab to your computer and use it in GitHub Desktop.
Save bpinedah/8bd0a520ef636c1a1c863aed4ea780ab to your computer and use it in GitHub Desktop.
Currying article
const list = [1, 2, 3];
function map(arr) {
return arr.map(function double(i){
return i * 2;
})
}
map(list); // [2, 4, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment