To remove duplicates from an array, you can use a Set, which automatically stores unique values.
- Convert the array into a Set, which will automatically remove any duplicate values.
- Convert the Set back into an array.
- Return the new array with unique elements.
function removeDuplicates(arr) {
return [...new Set(arr)];
}
// Example usage
console.log(removeDuplicates([1, 2, 2, 3, 4, 4, 5])); // Output: [1, 2, 3, 4, 5]
console.log(removeDuplicates(["apple", "banana", "apple", "orange"])); // Output: ["apple", "banana", "orange"]
This method has a time complexity of O(n), where n is the length of the array.
Tags: basic, JavaScript, Arrays, Algorithm