Skip to content

Instantly share code, notes, and snippets.

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