Underscore.JS - some method



Syntax

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

every method iterates over a given list of element, calls the predicate on each element. It returns true if any value of collection matches the given predicate.

Example

var _ = require('underscore');

var list = [1, 2, 3, 5]
//Example 1. check if any number is even
var result = _.some(list, function(num) { return (num % 2 == 0) });
console.log(result);

list = [1, 3, 5]
//Example 2. check if any number is even
var result = _.some(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

true
false
underscorejs_iterating_collection.htm
Advertisements