1.扩展运算符 扩展运算符(spread)是三个点(...).它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列. console.log(1, ...[2, 3, 4], 5) // 1 2 3 4 5 该运算符主要用于函数调用. function add(x, y) { return x + y; } const numbers = [4, 38]; add(...numbers) 替代函数的apply方法 // ES5 的写法 Math.max.apply(null, [1…