In this very contrived example, I have an array with 3 elements that I\'m looping over using the .each() method.
var vals = $w(\'foo bar baz\'); vals.each( func
From that page you linked to, isn't the correct way
if(val == 'bar') { throw $break; }
?