在调用函数时,浏览器每次都会传递进两个隐含的参数:
- 函数的上下文 this
- 封装实参的对象 arguments
arguments 是一个类数组对象,它也可以通过索引来操作数据,也可以获取长度
function fun(){
console.log(arguments);
}
fun("孙悟空",18);
在调用函数时,我们所传递的 实参都会在 arguments 中保存
arguments.length 可以用来获取实参的长度
function fun(){
console.log(arguments.length);
}
fun("孙悟空",18); // 2
即使不定义形参,也可以通过 arguments 来使用实参
function fun(){
// console.log(arguments.length);
console.log(arguments[0]); // 孙悟空
console.log(arguments[1]); // 18
}
fun("孙悟空",18);
arguments有一个属性 callee
- 这个属性对应一个函数对象,就是当前正在执行的函数对象
function fun(){
console.log(arguments.callee); // 指向的是当前正在执行的函数对象
console.log(arguments.callee === fun); // true
}
fun("孙悟空",18);