Typo (missing the dot operator)
RinatValiullov opened this issue · 1 comments
RinatValiullov commented
proposal-optional-chaining/README.md
Line 58 in 8461024
The following constructs are missing the dot .
operator:
a?[b] or a?(b)
It should be:
a?.[b] or a?.(b)
claudepache commented
No, because this sentence refers to the languages mentioned in the “Prior Art” section, not to ECMAScript.