_.remove(array, [predicate])
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).
Note: Unlike _.filter
, this method mutates array. Use _.pull
to pull elements from an array by value.
Arguments
array (Array)
: The array to modify.
[predicate=_.identity] (Function)
: The function invoked per iteration.
Returns
(Array)
: Returns the new array of removed elements.