4.6用Array.from而不是...运算符去做map遍历。因为这样可以避免创建一个临时数组。// badconst baz - [ ...foo].map(bar);/ / goodconst baz = Array .from(foo, bar);