![]() |
VOOZH | about |
Lodash _.pull() method is used to remove all the given values from a given array.
_.pull(array, [values]);Example 1: In this example, the lodash _.pull method removes all the values from an array that match with given values.
Output:
[ 1, 2, 4 ]Example 2: In this example, the lodash _.pull method removes all the values from an array that match with given values.
Output:
[ 2, 3, 3, 4 ]Example 3: In this example, the lodash _.pull method removes all the values from an array that match with given values.
Output:
[ 'a', 'b', 'd' ]Note: It will not work in normal JavaScript because it requires the library lodash to be installed.