Update article.md

According to https://github.com/javascript-tutorial/ru.javascript.info/pull/704
This commit is contained in:
Alexey Pyltsyn 2019-10-21 23:54:04 +03:00 committed by GitHub
parent 7a0fbdb407
commit 88cd022adc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -603,7 +603,7 @@ Here are examples of operations and `Reflect` calls that do the same:
|-----------------|----------------|-------------| |-----------------|----------------|-------------|
| `obj[prop]` | `Reflect.get(obj, prop)` | `[[Get]]` | | `obj[prop]` | `Reflect.get(obj, prop)` | `[[Get]]` |
| `obj[prop] = value` | `Reflect.set(obj, prop, value)` | `[[Set]]` | | `obj[prop] = value` | `Reflect.set(obj, prop, value)` | `[[Set]]` |
| `delete obj[prop]` | `Reflect.deleteProperty(obj, prop)` | `[[HasProperty]]` | | `delete obj[prop]` | `Reflect.deleteProperty(obj, prop)` | `[[Delete]]` |
| `new F(value)` | `Reflect.construct(F, value)` | `[[Construct]]` | | `new F(value)` | `Reflect.construct(F, value)` | `[[Construct]]` |
| ... | ... | ... | | ... | ... | ... |