0
点赞
收藏
分享

微信扫一扫

js基础学习 —— 函数的 arguments

眸晓 2022-03-30 阅读 58
function fun() {
    console.log(arguments)
    console.log("length:" + arguments.length)
    console.log("callee:" + arguments.callee)
}
fun(1, true, "hello")

在这里插入图片描述

举报

相关推荐

0 条评论