Skip to content

Instantly share code, notes, and snippets.

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