Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created April 21, 2020 18:34
Show Gist options
  • Save Jagathishrex/d6162181a42b018daff41d1213daa8e8 to your computer and use it in GitHub Desktop.
Save Jagathishrex/d6162181a42b018daff41d1213daa8e8 to your computer and use it in GitHub Desktop.
try {
var a = 10;
throw "a is function scoped ";
} catch(e) {
console.log("Reached catch");
console.log(a); // 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment