Skip to content

Instantly share code, notes, and snippets.

@AliN11
Created June 23, 2019 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliN11/ae8be03d58dda7037470cf27f6e1bbd0 to your computer and use it in GitHub Desktop.
Save AliN11/ae8be03d58dda7037470cf27f6e1bbd0 to your computer and use it in GitHub Desktop.
Javascript Exception Handler
try {
var x = y / 10;
} catch(error) {
console.log(error);
}
// Console: ReferenceError: y is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment