Skip to content

Instantly share code, notes, and snippets.

@anshuraj
Created February 15, 2020 13:41
Show Gist options
  • Save anshuraj/879c553d88fc79eaf3286dea79f1b009 to your computer and use it in GitHub Desktop.
Save anshuraj/879c553d88fc79eaf3286dea79f1b009 to your computer and use it in GitHub Desktop.
(function() {
try {
throw new Error();
} catch(x) {
var x = 1, y = 2;
console.log('x ', x);
}
console.log('x ', x);
console.log('y ', y);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment