We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d29218 commit 7ae1e57Copy full SHA for 7ae1e57
1-js/04-object-basics/07-optional-chaining/article.md
@@ -127,7 +127,7 @@ The variable must be declared (e.g. `let/const/var user` or as a function parame
127
128
As it was said before, the `?.` immediately stops ("short-circuits") the evaluation if the left part doesn't exist.
129
130
-So, if there are any further function calls or side effects, they don't occur.
+So, if there are any further function calls or operations to the right of stopped `?.`, they don't occur.
131
132
For instance:
133
0 commit comments