some
Check if any element in the array matches the predicate.
array(required): the array to testpredicate(required): lambda(element) -> boolean
utlx
some([1, 2, 3, 4], (x) -> x > 3) // true
some([1, 2, 3], (x) -> x > 5) // false