扩展运算符:
剩余运算符:把多个独立的合并到一个数组中,
扩展运算:讲一个数据分割,并将各个项作为分离的参数传给函数
eg:
const arr = [1,3,2,4,5,7,5,7,9,0]
最大值:
Math.max.apply(null,arr)
es6: Math.max(...arr);