Lodash – without method

  • Post author:
  • Post category:Lodash
  • Post comments:3 Comments
Lodash - without method

Syntax Of Lodash without method

_.without(array, [values])

Lodash without method creates an array excluding all given values using SameValueZero for equality comparisons.

Arguments

  • array (Array) − The array to inspect.
  • [values] (…*) − The values to exclude.

Output

  • (Array) − Returns the new array of filtered values.

Example

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

var result = _.without(numbers, 1, 2);
console.log(result);

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

Command

\>node tester.js

Output

[ 3, 4, 5 ]

Next Topic – Click Here

This Post Has 3 Comments

Leave a Reply