d05661f852 | ||
---|---|---|
.. | ||
Errors_trycatchfinally.js | ||
README.md |
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.