Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Last active April 21, 2020 18:39
Show Gist options
  • Save Jagathishrex/d3f5eb95dd615c12e03cbb6ddae53ede to your computer and use it in GitHub Desktop.
Save Jagathishrex/d3f5eb95dd615c12e03cbb6ddae53ede to your computer and use it in GitHub Desktop.
function test() {
try {
return 10;
} finally {
console.log("finally");
return 1;
}
}
let a = test(); //finally
console.log( a ); // 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment