Skip to content

Instantly share code, notes, and snippets.

@zacker330
Created March 11, 2013 03:00
Show Gist options
  • Save zacker330/5131618 to your computer and use it in GitHub Desktop.
Save zacker330/5131618 to your computer and use it in GitHub Desktop.
don's not break in return.
$.each([1,2,3,4,5,6], function(i, v){
alert(v);
if(v > 4){
return;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment