Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save szaranger/0fcb836fdd7746bac88437170de4f438 to your computer and use it in GitHub Desktop.
Save szaranger/0fcb836fdd7746bac88437170de4f438 to your computer and use it in GitHub Desktop.
try {
const result = 2 / 0;
console.log(result);
} catch (error) {
console.err(error);
throw new Error('Something went wrong', { cause: error });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment