beginners-intro-javascript-.../09-errors-try-catch-finally
Christopher Harrison d05661f852 Scaffolded pages 2020-09-22 17:58:36 -07:00
..
Errors_trycatchfinally.js Initial setup 2020-09-22 11:44:38 -07:00
README.md Scaffolded pages 2020-09-22 17:58:36 -07:00

README.md

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