Skip to content

Instantly share code, notes, and snippets.

@thmain
Created December 25, 2022 05:30
Show Gist options
  • Save thmain/323a0a67f9fc5ac92ad5c494ee9c52de to your computer and use it in GitHub Desktop.
Save thmain/323a0a67f9fc5ac92ad5c494ee9c52de to your computer and use it in GitHub Desktop.
function realSum(a, b) {
return a + b;
};
console.log(realSum(5, 3)); // 8
var sum5 = curryIt(realSum, 5);
console.log(sum5(4)); // 9
var sum3 = curryIt(realSum, 3);
console.log(sum3(4)); // 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment