Skip to content

Commit 5af71a9

Browse files
fix sentence
1 parent eda333d commit 5af71a9

File tree

1 file changed

+1
-1
lines changed
  • 1-js/04-object-basics/07-optional-chaining

1 file changed

+1
-1
lines changed

1-js/04-object-basics/07-optional-chaining/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ That's the expected result. JavaScript works like this. As `user.address` is `un
2525

2626
In many practical cases we'd prefer to get `undefined` instead of an error here (meaning "no street").
2727

28-
...And another example. In the web development, we can get an object that corresponds to a web page element using a special method call, such as `document.querySelector('.elem')`, and it returns `null` when there's no such element.
28+
...and another example. In Web development, we can get an object that corresponds to a web page element using a special method call, such as `document.querySelector('.elem')`, and it returns `null` when there's no such element.
2929

3030
```js run
3131
// document.querySelector('.elem') is null if there's no element

0 commit comments

Comments
 (0)