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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!