Open rauschma opened 3 years ago
The Optional Chaining operator example in the New in ECMAScript 2020 section uses the incorrect .? syntax:
.?
Optional chaining for property accesses and method calls. One example of optional chaining is: -value.?prop +value?.prop
Oh no. 😬 Thanks for reporting this. It’ll be fixed in the next release.
Hi,
This page contains "Namespace re-exporting" twice under ECMAScript 2020.
The Optional Chaining operator example in the New in ECMAScript 2020 section uses the incorrect
.?
syntax: