union
Combine two arrays, removing duplicates. Returns all unique values from both.
arr1(required): first arrayarr2(required): second array
utlx
union([1, 2, 3], [3, 4, 5]) // [1, 2, 3, 4, 5]
union(["A", "B"], ["B", "C", "D"]) // ["A", "B", "C", "D"]