合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
arguments 每个函数内置属性,存储了传递的所有的实参,是一个伪数组,可以遍历 ~~~ function test(a, b) { console.log(arguments); } test(1, 2); ~~~ ~~~ function test() { console.log(arguments); } test(3, 2); ~~~