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
Pingback: Lodash - takeWhile method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd