5. 从数组中移除重复元素 通过使用集合语法和 Spread 操作,可以很容易将重复的元素移除: const removeDuplicateItems = arr => [...newSet(arr)]; removeDuplicateItems([42, 'foo', 42, 'foo',true,true]);//=> [42, "foo", true] 6. 平铺多维数组 使用Spread 操作平铺嵌套多维数组: const arr =...