Update article.md
According to https://github.com/javascript-tutorial/ru.javascript.info/pull/704
This commit is contained in:
parent
7a0fbdb407
commit
88cd022adc
1 changed files with 1 additions and 1 deletions
|
@ -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]]` |
|
||||||
| ... | ... | ... |
|
| ... | ... | ... |
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue