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 = {};