返回数组的所有不同值。
使用 ES6 的 Set 和 ...rest 操作符剔除重复的值。
Set
...rest
const distinctValuesOfArray = arr => [...new Set(arr)];
distinctValuesOfArray([1, 2, 2, 3, 4, 4, 5]); // [1,2,3,4,5]