remove dubbles in array code example Example: deduplicate array javascript function uniq(a) { return Array.from(new Set(a)); }