every_.every(list, [predicate], [context])
Alias: all
Returns true if all of the values in the list pass the predicate truth test. Short-circuits and stops traversing the list if a false element is found.
_.every([2, 4, 5], function(num) { return num % 2 == 0; }); => false
Please login to continue.