Lodash - remove method



Syntax

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

Removes all elements from 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 ]
lodash_array.htm
Advertisements