impatient-js
impatient-js copied to clipboard
Chapter: New JavaScript features
trafficstars
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,