VOOZH about

URL: https://www.geeksforgeeks.org/javascript/lodash-_-pullallwith-method/

⇱ Lodash _.pullAllWith() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lodash _.pullAllWith() Method

Last Updated : 15 Jul, 2025

Lodash_.pullAllWith() method is similar to the _.pullAll() method that returns the first array containing the values that are in the first array not in the second array but in _.pullAllWith() all the elements of the first array are compared with the second array by applying comparison provided in third. It may be a little complex to understand by reading this but it will become simple when you see the example.

Syntax:

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

Parameters:

  • array: This parameter holds the array that needs to be modified.
  • values: This parameter holds the value that needs to be removed.
  • comparator: This parameter holds the comparison invoked per element.

Return Value:

  • This method returns an array. 

Example 1: In this example, we are removing the giving array from another array that has the same value as it and printing the result in the console.

Output:

👁 Image

Example 2: In this example, we are removing the giving array from another array that has the same value as it and printing the result in the console.

Output:

👁 Image
Comment