Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started