201602021344_《Javascript柯里化uncurrying()(将内置方法独立成为一个通用方法)》

Function.prototype.uncurrying = function() {
    var that = this;
    return function() {
        return Function.prototype.call.apply(that, arguments);
    }
};
function add(a,b){
     return a + b;
};
var myAdd = add.uncurrying(); 
console.log(add(5,6));// 11

 

posted @ 2016-02-02 13:46  Coca-code  阅读(122)  评论(0编辑  收藏  举报