some_.some(list, [predicate], [context])
Alias: any
Returns true if any of the values in the list pass the predicate truth test. Short-circuits and stops traversing the list if a true element is found.
_.some([null, 0, 'yes', false]); => true
some_.some(list, [predicate], [context])
Alias: any
Returns true if any of the values in the list pass the predicate truth test. Short-circuits and stops traversing the list if a true element is found.
_.some([null, 0, 'yes', false]); => true
Please login to continue.