Lodash - without method



Syntax

_.without(array, [values])

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 ]
lodash_array.htm
Advertisements