Post #1795972
2023-07-15 11:38 UTC
@patak @nic Will deep nested also work?
```
let obj = null;
obj?.prop?.deepProp = 1;
```
Replies (1)
-
@patak@m.webtoo.ls 2023-07-15 13:32
@Shini92 @nic It should. The first `obj?.prop` is undefined, the rest then is the same as in the proposal.