Question: JAVASCRIPT PLEASE Write a function that takes two arrays as arguments, and returns an array containing the union of the values from the two. There
JAVASCRIPT PLEASE
Write a function that takes two arrays as arguments, and returns an array containing the union of the values from the two. There should be no duplication of values in the returned array, even if there are duplicates in the original arrays. You may assume that both arguments will always be arrays.
EXAMPLE:
union([1, 3, 5], [3, 6, 9]); // [1, 3, 5, 6, 9] union([2, 2, 2, 2], [10, 5, 2]); // [2, 10, 5]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
