From d4120a0ae515792badaa7e52cc947e9e8477093e Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Tue, 20 Oct 2020 11:17:09 +0300 Subject: [PATCH] Update article.md --- 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 21db0b5e..b2738a7a 100644 --- a/1-js/04-object-basics/07-optional-chaining/article.md +++ b/1-js/04-object-basics/07-optional-chaining/article.md @@ -36,7 +36,7 @@ Once again, if the element doesn't exist, we'll get an error accessing `.innerHT How can we do this? -The obvious solution would be to check the value using `if` or the conditional operator `?`, before accessing it, like this: +The obvious solution would be to check the value using `if` or the conditional operator `?`, before accessing its property, like this: ```js let user = {};