day29 argument 克隆
程序员文章站
2022-05-25 08:02:44
...
arguments.callee 打印函数的引用 即自己
function test(){
console.log(arguments.callee == test);
}
test();
var num = (function (n){
if( n == 1 || n == 0){
return 1;
}
return n*arguments.callee(n-1);
}(3))
---------------------------------------
func.caller 查询函数自己被哪个环境调用了
function test(){
demo();
}
function demo(){
console.log(demo.caller);
}
test();
上一篇: 蜀汉灭亡是什么样的?到底有多惨