Returns true if the predicate returns true for some items in an array. Same as list.some(predicate).
list.some(predicate)
some(isEven)([3, 6, 9])// => false Copy
some(isEven)([3, 6, 9])// => false
Generated using TypeDoc
Returns true if the predicate returns true for some items in an array. Same as
list.some(predicate)
.