理解spread运算符与rest参数 spread运算符与rest参数 是ES6的新语法.它们的作用是什么?能做什么事情? 1. rest运算符用于获取函数调用时传入的参数. function testFunc(...args) { console.log(args); // ['aa', 'bb', 'cc'] console.log(args.length); } // 调用函数 testFunc('aa', 'bb', 'cc'); 2. spread运算符用于数组的构造,析构,以及在函数…