We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971a32e commit 9b2f866Copy full SHA for 9b2f866
1-js/04-object-basics/07-optional-chaining/article.md
@@ -56,7 +56,7 @@ let user = {}; // user has no address
56
alert(user.address ? user.address.street ? user.address.street.name : null : null);
57
```
58
59
-That's just awful, one may even problems understanding such code.
+That's just awful, one may even have problems understanding such code.
60
61
Don't even care to, as there's a better way to write it, using the `&&` operator:
62
0 commit comments