Lodash – remove method

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

Syntax Of Lodash remove method

_.remove(array, [predicate=_.identity])

Lodash remove method removes all elements from the array that predicate returns truthy for and returns an array of the removed elements. The predicate is invoked with three arguments: (value, index, array).

Arguments

  • array (Array) โˆ’ The array to modify.
  • [predicate=_.identity] (Function) โˆ’ The function invoked per iteration.

Output

  • (Array) โˆ’ Returns the new array of removed elements.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4, 5, 6, 7];

var result = _.remove(list, function(n) {
   return n % 2 == 0;
});
console.log(result);

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

Command

\>node tester.js

Output

[ 2, 4, 6 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply