![]() |
VOOZH | about |
Lodash _.union() method is used to take n number of arrays and create an array of unique values in order, from all given arrays using SameValueZero for equality comparisons.
_.union(*arrays);Example 1: In this example, we are passing two different arrays into the _.union() method and printing the result in the console.
Output:
[20, 12, 8, 15, 6]Example 2: In this example, we are passing three different arrays into the _.union() method and printing the result in the console.
Output:
[1, 2, 3, 4, 5, 6, 7]