chakra-core / chakra-core/ChakraCore

Implement optional chaining

Open
#6,349 3 comments 4 reactions 0 assignees View on GitHub
ES Spec Changed Feature Request
Dominant language
JavaScript
Stars
9.3k
Forks
1.2k
PR merge metrics
No merged PRs in 30d

Description

Optional chaining (https://github.com/tc39/proposal-optional-chaining) is now stage 4 and should be implemented; hopefully not too hard, roughly speaking:

```js
a?.someExpression;
//is sugar for
a ? a.someExpression : undefined;
```

I may try and do this in the next couple of weeks if no one else is.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.