标签:lse eve ocs uri ret 输入数据 ons 相关 cti
1.要求
2.思路
3.代码
function add() {
if(arguments.length===1){
if(typeof(arguments[0])==='number'){
var a=arguments[0];
return function(b){
if(typeof(b)==='number'){
return a+b;
}
else{
return undefined;
}
};
}
else{
return undefined;
}
}
else if(arguments.length===2){
if(typeof(arguments[0])==='number' && typeof(arguments[1])==='number'){
return arguments[0]+arguments[1];
}
else{
return undefined;
}
}
}
add(2)(2);
4.相关链接
Arguments Optional-freecodecamp算法题目
标签:lse eve ocs uri ret 输入数据 ons 相关 cti
原文地址:https://www.cnblogs.com/ahswch/p/9305153.html