Underscore.JS - without method



Syntax

_.without(array, *values)

without method returns a array after removing the values from given array.

Example

var _ = require('underscore');

var list = [1, 2, 3, 4, 5, 6]
//Example 1: remove 5 
result = _.without(list, 5);
console.log(result)

//Example 2: remove 5 and 6
result = _.without(list, 5, 6);
console.log(result)

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

Command

\>node tester.js

Output

[ 1, 2, 3, 4, 6 ]
[ 1, 2, 3, 4 ]
underscorejs_processing_array.htm
Advertisements