arguments
是函数内部对象, 类数组 , 函数运行时实参列表的映射 ,但是和实参存放在不同的内存区域
arguments.callee
属性里面存放 当前运行的函数 可以实现递归调用
function foo(d,e,g) {
console.log(arguments);
}
foo('hello','world','!');
arguments
是函数内部对象, 类数组 , 函数运行时实参列表的映射 ,但是和实参存放在不同的内存区域
arguments.callee
属性里面存放 当前运行的函数 可以实现递归调用
function foo(d,e,g) {
console.log(arguments);
}
foo('hello','world','!');