The _.pull()
method in Lodash removes all the specified values from an array. This method mutates the original array.
_.pull(array, [values])
This method accepts the following parameters:
array
: This is the array to be modified.values
: These are the comma-separated values that are to be removed from the array.This method mutates the original array and returns it.
In the "HTML" tab:
lodash
script.In the "JavaScript" tab:
numbers
array and populate it with a few values._.pull()
method to remove the specified values.numbers
on the console. In the output, we see the original array from which the specified values are removed by the _.pull()
method.