javascript 之Rest 参数(...)
ES6 Rest参数
Rest就是为解决传入的参数数量不一定, rest parameter(Rest 参数) 本身就是数组,数组的相关的方法都可以用。
语法:
function f(a, b, ...theArgs) { // ... }