题解 | #二次封装函数#
二次封装函数
http://www.nowcoder.com/practice/fb2d46b99947455a897f2e9fe2268355
function partial(fn, str1, str2) {
let func = function(str3){
return fn(str1,str2,str3);
}
return func;
}二次封装函数
http://www.nowcoder.com/practice/fb2d46b99947455a897f2e9fe2268355
function partial(fn, str1, str2) {
let func = function(str3){
return fn(str1,str2,str3);
}
return func;
}相关推荐

