Underscore.JS - reject method



Syntax

_.reject(list, predicate, [context])

reject method iterates over a given list of element, calls the predicate on each element. It returns the all non-matched cases.

Example

var _ = require('underscore');

var list = [1, 2, 3, 4, 5, 6]
//Example 1. find even numbers using reject method
var result = _.reject(list, function(num) { return !(num % 2 == 0) });
console.log(result);

//Example 2. find odd numbers using reject method
var result = _.reject(list, function(num) { return (num % 2 == 0) });
console.log(result);

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

Command

\>node tester.js

Output

[ 2, 4, 6 ]
[ 1, 3, 5 ]
underscorejs_iterating_collection.htm
Advertisements