Returns an array of unique items by removing duplicates from the given array.
This function utilizes the Set object to remove duplicate values, ensuring that only unique items
remain in the returned array. The order of items in the resulting array is preserved as in the input.
Returns
A new array containing only the unique items from the input array.
Returns an array of unique items by removing duplicates from the given array.
This function utilizes the
Set
object to remove duplicate values, ensuring that only unique items remain in the returned array. The order of items in the resulting array is preserved as in the input.Returns
A new array containing only the unique items from the input array.