function duplicates(arr) { return Array.from( new Set( arr.filter((item, index, all) => { return all.filter((v, i, a) ...