柯里化

var scope = "test";
function currying(welcome){
    return function(name) {
        return welcome + "," + name;
    }
}
var prefix = currying("hello");
prefix("world");

 

posted on 2017-08-21 16:48  jis117  阅读(111)  评论(0编辑  收藏  举报

导航