Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Created November 3, 2020 14:07
Show Gist options
  • Save ranamahmud/443a8c5f578ff377668f7bfa7727dce8 to your computer and use it in GitHub Desktop.
Save ranamahmud/443a8c5f578ff377668f7bfa7727dce8 to your computer and use it in GitHub Desktop.
// error free code
try {
alert("Hello World");
} catch (err) {
alert("Error found");
}
// code with error
try {
alert("Hello Bangladesh");
country; // error, country variable not found
alert("Hello World");
} catch (err) {
alert("There is an error");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment