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