Created
May 19, 2021 01:40
-
-
Save pablotolentino/0a4cefde7a281fe2e728b2ac1bed3f31 to your computer and use it in GitHub Desktop.
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 { | |
throw new Error('esto es un error'); | |
} catch (err) { | |
console.error(err.message); | |
} | |
// resultado: esto es un error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment