Skip to content

Commit 083ba1c

Browse files
authored
paste negation
Regardless Object.keys and other methods: Properties from the prototype are taken into account. -> Properties from the prototype are NOT taken into account.
1 parent 335131c commit 083ba1c

File tree

1 file changed

+1
-1
lines changed
  • 1-js/08-prototypes/01-prototype-inheritance

1 file changed

+1
-1
lines changed

1-js/08-prototypes/01-prototype-inheritance/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ The answer is simple: it's not enumerable. Just like all other properties of `Ob
315315
```smart header="Almost all other key/value-getting methods ignore inherited properties"
316316
Almost all other key/value-getting methods, such as `Object.keys`, `Object.values` and so on ignore inherited properties.
317317
318-
They only operate on the object itself. Properties from the prototype are taken into account.
318+
They only operate on the object itself. Properties from the prototype are *not* taken into account.
319319
```
320320

321321
## Summary

0 commit comments

Comments
 (0)