javascript use reduce to remove duplicates code example
Example 1: javascript filter array remove duplicates
// Using the Set constructor and the spread syntax:
arrayWithOnlyUniques = [...new Set(arrayWithDuplicates)]
Example 2: array remove duplicates javascript
uniq = [...new Set(array)];