Lodash – pull method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - pull method

Syntax Of Lodash pull method

_.pull(array, [values])

The Lodash pull method Removes all given values from an 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 ]

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply