Questions tagged [ecmascript-2020]

ECMAScript 2020 (ES2020) is the 11th version of the ECMAScript language. It adds many important new features, including dynamic imports, globalThis, optional chaining, arbitrary precision BigInts and Promise.allSettled. Only use this tag where the question specifically relates to new features or technical changes provided in ECMAScript 2020.

ECMAScript 2020 (ES2020) is the 11th version of the language.

The following proposals have been merged:

Links

62 questions
-1
votes
1 answer

Effect of TARGET property inside tsconfig.json

Below is the tsconfig.json of my project. { "compilerOptions": { "module": "commonjs", "esModuleInterop": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, …
Mike
  • 1,048
  • 2
  • 11
  • 23
-3
votes
1 answer

What does "?." (dot after questiion mark) mean in JS

I stumbled upon the "?." syntax in another SO question. Something like this - console.log(x?.y?.z); What does it do?
Charlie
  • 22,886
  • 11
  • 59
  • 90
1 2 3 4
5