Returns a unique union of elements of two arrays
arrUnion([1, 2, 3, 4, 5], [1, 3, 5, 7]);=> [1, 2, 3, 4, 5, 7]
First array
Second array
Generated using TypeDoc
Returns a unique union of elements of two arrays
Example