Lodash – intersection With methods

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - intersection With methods

Syntax Of Lodash intersection With methods

_.intersectionWith([arrays], [comparator])

This Lodash intersection With methods is like _.intersection except that it accepts a comparator which is invoked to compare elements of arrays. The order and references of result values are determined by the first array. The comparator is invoked with two arguments: (arrVal, othVal).

Arguments

  • [arrays] (…Array) โˆ’ The arrays to inspect.
  • [comparator] (Function) โˆ’ The comparator invoked per element.

Output

  • (Array) โˆ’ Returns the new array of intersecting values.

Example

var _ = require('lodash');
var numbers = [1.7, 2.4, 3.6, 4.2];
var listOfNumbers = '';

listOfNumbers = _.intersectionWith([{ 'x': 4 }, { 'x': 1 }], [{ 'x': 4 }], _.isEqual);
console.log(listOfNumbers);

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

Command

\>node tester.js

Output

[ { x: 4 } ]

Next Topic – Click Here

This Post Has One Comment

Leave a Reply