beginners-intro-javascript-.../09-errors-try-catch-finally/README.md

401 B

Catching errors with try/catch/finally

Whenever your code executes there's a chance something can go wrong, especially if you're communicating with external systems. By using try/catch/finally you can allow your code to catch errors and properly handle them.

Further reading