Returns every element that exists in any of the two arrays once
union([1, 2, 3], [4, 3, 2]); // [1,2,3,4]
Generated using TypeDoc
Returns every element that exists in any of the two arrays once
Example