A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/JavaScript/Reference/Errors/Bad_new_optional below:

SyntaxError: new keyword cannot be used with an optional chain - JavaScript

There are two ways to get this error. The first one is if the constructor expression is an optional chain expression, like this:

new Intl?.DateTimeFormat();
Number?.[parseMethod]`Hello, world!`;

The second one is if ?. occurs between the constructor and the arguments list, like this:

new Intl.DateTimeFormat?.();

Optional new is specifically forbidden because its syntax is complicated (new with and without arguments), and the result is unclear (it would be the only case where new does not evaluate to an object value). You need to translate the optional chaining to its underlying condition (see optional chaining for more information).

const result =
  Intl.DateTimeFormat === null || Intl.DateTimeFormat === undefined
    ? undefined
    : new Intl.DateTimeFormat();

Remember that optional chaining only short-circuits within a parenthesized unit. If you parenthesize your constructor expression, the optional chaining will not cause an error, because now the constructor does not short-circuit and the result is clear (the constructor will produce undefined and then cause the new expression to throw).

new (Intl?.DateTimeFormat)(); // Throws if Intl?.DateTimeFormat is undefined

However this is a bit nonsensical anyway because optional chaining prevents errors inside the property access chain, but is then guaranteed to generate an error when calling new. You would probably still want to use a conditional check.

Note that optional chaining is only forbidden as the constructor expression. You can use optional chaining inside the argument list, or use optional chaining on the new expression as a whole.

new Intl.DateTimeFormat(navigator?.languages);
new Intl.DateTimeFormat().resolvedOptions?.();

Note that there's no needs to use ?. on the new expression itself: new a()?.b, because new is guaranteed to produce a non-nullish object value.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4