We could potentially provide the same functionality in `try/catch` by extending the signature of `catch` to
```js
try {
} catch(<expression_var>, <function_expression>) {
}
```
If `<function_expression>` evaluates to truthy, invoke the `catch` block,
otherwise don't.
_______________________________________________ es-discuss mailing list [email protected] https://mail.mozilla.org/listinfo/es-discuss

