ES6 剩余函数与展开运算符
- 认识剩余参数
const add = (x, y, ...args) => {
console.log(x, y, args);
};
剩余参数是数组,没有值,就是空数组 ![alt]
注意事项
箭头函数的参数部分即使只有一个剩余参数,也不能省略圆括号
const add = (...args) => {
console.log(args);
};
add(1, 2);
剩余参数的位置