Lodash – union method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - union method

Syntax Of Lodash – union method

_.union([arrays])

Lodash union method creates an array of unique values, in order, from all given arrays using SameValueZero for equality comparisons.

Arguments

  • [arrays] (…Array) − The array to inspect.

Output

  • (Array) − Returns the new array of combined values.Lodash union method creates an array of unique values, in order, from all given arrays using SameValueZero for equality comparisons.

Example

var _ = require('lodash');
var numbers = [1, 2, 3, 4]

var result = _.union(numbers, [2]);
console.log(result);

var result = _.union(numbers, [2, 5]);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 1, 2, 3, 4 ]
[ 1, 2, 3, 4, 5 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply