minor fixes

This commit is contained in:
Ilya Kantor 2019-11-30 08:44:57 +03:00
parent ce8e68f21c
commit 40e941e4e4
4 changed files with 3 additions and 7 deletions

View file

@ -94,11 +94,7 @@ alert(user.name); // Alice
alert(user.surname); // Cooper
```
As the result, we have a "virtual" property `fullName`. It is readable and writable, but in fact does not exist.
```smart header="No way to handle `delete`"
There's no similar method to handle deletion of an accessor property. Only getter/setter methods may exist.
```
As the result, we have a "virtual" property `fullName`. It is readable and writable.
## Accessor descriptors