DEV Community

Discussion on: Clean Code Applied to JavaScript — Part V. Exceptions

Collapse
 
coly010 profile image
Colum Ferry

Awesome post, it may be worth noting that there is a change coming to the spec that allows developers to ignore the specifics of the error, and do whatever they want in the catch:

try {
  someThrowableMethod();
} catch {
  uhOhTellUserWeErrored();
}

We no longer have to ask the engine what the error was, and instead just react to it.

This change has landed yet, but it's on its way!

Again, great article!