Consider the following code:
var sentences = [ \'Lorem ipsum dolor sit amet, consectetur adipiscing elit.\', \'Vivamus aliquet nisl quis
There are a lot of answers here. And it's old, but this is for anyone coming here via google. In jQuery each function
return false; is like break.
return false;
break
just
return; is like continue
return;
continue
These will emulate the behavior of break and continue.