new Set()
with all values of a
and b
and convert it to an array.const union = (a, b) => Array.from(new Set([...a, ...b]));
union([1, 2, 3], [4, 3, 2]); // [1, 2, 3, 4]
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️