From df15c841ce03a1ce3e8b868dd5781c8515a36482 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Tue, 2 Jul 2019 09:42:43 -0300 Subject: [PATCH] Update article.md --- 1-js/09-classes/05-extend-natives/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/05-extend-natives/article.md b/1-js/09-classes/05-extend-natives/article.md index f85aa024..acb41151 100644 --- a/1-js/09-classes/05-extend-natives/article.md +++ b/1-js/09-classes/05-extend-natives/article.md @@ -79,7 +79,7 @@ So, if `Rabbit extends Animal`, then: That's thoroughly explained in the chapter [](info:static-properties-methods#statics-and-inheritance). -But built-in classes are an exception. They don't inherit statics `(1)` from each other. +But built-in classes are an exception. They don't inherit statics from each other. For example, both `Array` and `Date` inherit from `Object`, so their instances have methods from `Object.prototype`. But `Array.[[Prototype]]` does not point to `Object`. So there's `Object.keys()`, but not `Array.keys()` and `Date.keys()`.