From f3aeacc86b6bc15343afcf0f36ff9bd073e6df34 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 24 Mar 2022 08:52:53 +0300 Subject: [PATCH] minor fixes --- 1-js/04-object-basics/07-optional-chaining/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/07-optional-chaining/article.md b/1-js/04-object-basics/07-optional-chaining/article.md index e7235a67..589c1eb2 100644 --- a/1-js/04-object-basics/07-optional-chaining/article.md +++ b/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 As it was said before, the `?.` immediately stops ("short-circuits") the evaluation if the left part doesn't exist. -So, if there are any further function calls or operations to the right of stopped `?.`, they don't occur. +So, if there are any further function calls or operations to the right of `?.`, they won't be made. For instance: