Merge pull request #1215 from dagolinuxoid/patch-5

paste negation
This commit is contained in:
Ilya Kantor 2019-08-05 11:46:24 +03:00 committed by GitHub
commit d1d8c968e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,7 +315,7 @@ The answer is simple: it's not enumerable. Just like all other properties of `Ob
```smart header="Almost all other key/value-getting methods ignore inherited properties"
Almost all other key/value-getting methods, such as `Object.keys`, `Object.values` and so on ignore inherited properties.
They only operate on the object itself. Properties from the prototype are taken into account.
They only operate on the object itself. Properties from the prototype are *not* taken into account.
```
## Summary