Created
June 23, 2019 12:17
-
-
Save AliN11/ae8be03d58dda7037470cf27f6e1bbd0 to your computer and use it in GitHub Desktop.
Javascript Exception Handler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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