From 083ba1c3952ecb4970de4977bb9ad3731e8c499e Mon Sep 17 00:00:00 2001 From: daGo Date: Mon, 5 Aug 2019 10:38:22 +0300 Subject: [PATCH] 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-js/08-prototypes/01-prototype-inheritance/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/08-prototypes/01-prototype-inheritance/article.md b/1-js/08-prototypes/01-prototype-inheritance/article.md index 8f4ecb9c..5895a0b3 100644 --- a/1-js/08-prototypes/01-prototype-inheritance/article.md +++ b/1-js/08-prototypes/01-prototype-inheritance/article.md @@ -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