标签:style color cti rgb type js
function factorial(num){
if(num<=1){
return 1;
}else{
return num * arguments.callee(num-1); //指向一个正在执行函数的指针,可以实现对函数的递归调用
}
}
========================================
Array.prototype.slice.call(arguments, 0); //截取数组的所有参数
标签:style color cti rgb type js
原文地址:http://www.cnblogs.com/javawebstudy/p/3773187.html