Lodash - pull method



Syntax

_.pull(array, [values])

Removes all given values from array using SameValueZero for equality comparisons.

Arguments

  • array (Array) − The array to modify.

  • [values] (...*) − The values to remove.

Output

  • (Array) − Returns array.

Example

var _ = require('lodash');
var list = [1, 2, 3, 2, 5, 6, 2];

_.pull(list,2)
console.log(list);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

[ 1, 3, 5, 6 ]
lodash_array.htm
Advertisements