minor fixes

This commit is contained in:
Ilya Kantor 2022-04-14 06:35:11 +03:00
parent 613e921f73
commit 246156d6e2
4 changed files with 8 additions and 8 deletions

View file

@ -206,7 +206,7 @@ delete user?.name; // delete user.name if user exists
```
````warn header="We can use `?.` for safe reading and deleting, but not writing"
The optional chaining `?.` has no use at the left side of an assignment.
The optional chaining `?.` has no use on the left side of an assignment.
For example:
```js run