profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

JavaScript Optional Catch Binding

Description

Sometimes you don't care about the error and you're allowed to ignore it.

Proposal

Optional catch binding1

Syntax

try {
  // ···
} catch {
  // ···
}

Footnotes