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
Pingback: Lodash - pull At method - Adglob Infosystem Pvt Ltd
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd