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
Pingback: Lodash - Array - Adglob Infosystem Pvt Ltd
Major thanks for the blog post.Really thank you! Great.
I really liked your post. Keep writing.