var factorial = function(x){
if(x<=1) {
return 1;
}
else if(x>1) {
return x*arguments.callee(x-1);
}
}
本文共 169 字,大约阅读时间需要 1 分钟。
var factorial = function(x){
if(x<=1) {
return 1;
}
else if(x>1) {
return x*arguments.callee(x-1);
}
}
转载于:https://www.cnblogs.com/rellame/p/5266753.html