function test(a,b,c){
console.log(arguments.callee.length)
console.log(test.length)
console.log(arguments.length)
}
test(1,2)
运行结果
前端学习笔记202310学习笔记第一百零玖天-vue3-链式调用&对象属性与遍历&this指向&caller_callee之25
阅读 31
2023-11-04
function test(a,b,c){
console.log(arguments.callee.length)
console.log(test.length)
console.log(arguments.length)
}
test(1,2)
运行结果
相关推荐
精彩评论(0)