Lodash – pullAllWith method

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

Syntax Lodash pullAllWith method

_.pullAllWith(array, values, [comparator])

This Lodash pullAllWith method is like _.pullAll except that it accepts a comparator which is invoked to compare elements of the array to values. The comparator is invoked with two arguments: (arrVal, othVal).

Arguments

  • array (Array) โˆ’ The array to modify.
  • values (Array) โˆ’ The values to remove.
  • [comparator] (Function) โˆ’ The comparator invoked per element.

Output

  • (Array) โˆ’ Returns array.

Example

var _ = require('lodash');
var listOfNumbers = [{ 'x': 4 }, { 'x': 1 }];

_.pullAllWith(listOfNumbers, [{ '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: 1 } ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply