企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## 是一个类数组对象 * 有 length 属性 * 有下标 * 无数组对应的方法 ## arguments 转换为 数组 ``` 1. Array.prototype.slice.call(arguments) 2. [].slice.call(arguments) 3. Array.from(arguments) 4. [...arguments] ``` ## callee arguments 内的一个指针,指向函数 ## typeof typeof arguments 返回 'object'