标签:cti function nts arguments return 匿名函数 bsp 函数 fun
var res = (function (n) {
if( n>1 ) {
return n + arguments.callee( n-1 );
} else {
return 1;
}
})(100)
console.log(res);
标签:cti function nts arguments return 匿名函数 bsp 函数 fun
原文地址:http://www.cnblogs.com/maidongdong/p/7954591.html