Skip to content

Instantly share code, notes, and snippets.

@clonn
Created April 21, 2016 08:54
Show Gist options
  • Save clonn/1549d32d941e281c86bd5ad4c14d4b27 to your computer and use it in GitHub Desktop.
Save clonn/1549d32d941e281c86bd5ad4c14d4b27 to your computer and use it in GitHub Desktop.
test for loop and return
var s= 10;
for(var i=0; i<=s; i++) {
console.log('run' + i);
try {
if (i===1) { return console.log('run end');}
} catch(e) {
return e;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment