例如 : 将函数的 arguments参数转成数组格式
es5:
[].slice.call(arguments)
Array.prototype.slice.call(arguments)
es6:
Array.from(arguments) 能将具有 Iterator接口的数据格式(Set, Map)转成真正的数组
[...arguments] 也能将arguments转成数组
原文:http://www.cnblogs.com/tangyuu/p/6401773.html