210 B
210 B
Unique values of array
Use ES6 Set and the ...rest operator to discard all duplicated values.
const uniqueValuesOfArray = arr => [...new Set(arr)];
// unique([1,2,2,3,4,4,5]) -> [1,2,3,4,5]