- arguments 实参集合
- length 形参的个数
- name 函数的名称
- caller 函数的调用者
function fn(x, y, z) {console.log(fn.length) // => 形参的个数console.log(arguments) // 伪数组实参参数集合console.log(fn.caller) // 获取调用当前函数的函数console.log(fn.name) // => 函数的名字}function f() {fn(10, 20, 30)}f()

