Find the concatenation of multiple arrays
arguments
union([1, 2], [2, '33'])// [1, 2, '33']union([1, 2], [2, '33'], [1, 11, 2, '2'])// [ 1, 2, '33', 11, '2' ] Copy
union([1, 2], [2, '33'])// [1, 2, '33']union([1, 2], [2, '33'], [1, 11, 2, '2'])// [ 1, 2, '33', 11, '2' ]
2.2.1
Find the concatenation of multiple arrays