union
Get the union of two arrays arr1
and arr2
, returning a new array containing elements from both arrays without duplicates.
arr1
(T[]
): The first array.arr2
(T[]
): The second array.T[]
): A new array containing elements from both arrays without duplicates.