ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
arguments 每个函数内置属性,存储了传递的所有的实参,是一个伪数组,可以遍历 ~~~ function test(a, b) { console.log(arguments); } test(1, 2); ~~~ ~~~ function test() { console.log(arguments); } test(3, 2); ~~~