Skip to content

Commit df15c84

Browse files
authored
Update article.md
1 parent 94c83e9 commit df15c84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/09-classes/05-extend-natives/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ So, if `Rabbit extends Animal`, then:
7979

8080
That's thoroughly explained in the chapter [](info:static-properties-methods#statics-and-inheritance).
8181

82-
But built-in classes are an exception. They don't inherit statics `(1)` from each other.
82+
But built-in classes are an exception. They don't inherit statics from each other.
8383

8484
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()`.
8585

0 commit comments

Comments
 (0)