To find unique elements in an array, you can use a set to filter out duplicates.
- Convert the array to a set, which automatically removes duplicates.
- Convert the set back to an array to get the unique elements.
- Return the unique array.
function findUnique(arr) {
return [...new Set(arr)];
}
// Example usage
console.log(findUnique([1, 2, 2, 3, 4, 4])); // Output: [1, 2, 3, 4]
console.log(findUnique(["apple", "banana", "apple"])); // Output: ["apple", "banana"]
This method has a time complexity of O(n), where n is the length of the array.
Tags: basic, JavaScript, Arrays, Algorithm