关于ES6的默认参数对arguments的结果的影响
案列一:function f1(arr){ arr[0]=arr[2];}function f2(a,b,c=3){ b=2 c=10; f1(arguments) console.log(arguments); console.log(a+b+c);}f2(1,1,1);打印结果Arguments(3) [1, 1, 1, calle...