Sorry if I\'m missing something obvious, but I can\'t figure out how to bind a specific (nth) argument of a function in javascript. Most of my functional programming I\'ve
Well. I'll just throw this out there.
var add = function(a,b) { return a + b; }; var addThree = function(a) { return add(a,3); }; add(1,2); addThree(4);
Maybe it will be ok for some.