.some(callback)
Description
Parameters
Usage On Arrays
arr = ["wow","hello","world"]
// setup the array
log arr.some(def(val) -> (
return val.toUpper().contains("O")
))
// returns true
// the callback function was applied to each valueLast updated