扩展运算符将一个数组转为用逗号分隔的参数序列
console.log(...[a, b, c]) // a b c
(...)ES6三点扩展运算符
原文:http://www.cnblogs.com/rlann/p/7222150.html