详情以及建议见 https://github.com/ruanyf/es6tutorial/issues/111。
5)类似数组的对象
任何类似数组的对象,都可以用扩展运算符转为真正的数组。
var nodeList = document.querySelectorAll('div');
var array = [...nodeList];
这里明显有问题,对于扩展运算符,只能对于可遍历(iterable)的对象
MDN
The spread operator allows an expression to be expanded in places where multiple arguments (for function calls) or multiple elements (for array literals) are expected.