Skip to content

Instantly share code, notes, and snippets.

@ddmills
Created June 8, 2017 14:43
Show Gist options
  • Save ddmills/d2b9c95dc38790ab813ec1b3026f16bb to your computer and use it in GitHub Desktop.
Save ddmills/d2b9c95dc38790ab813ec1b3026f16bb to your computer and use it in GitHub Desktop.
function foo() {
for (var i = 0; i < 10; i++) {
try {
return i;
} finally {
continue;
}
}
return i;
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment