We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa0c451 commit 45c2e1dCopy full SHA for 45c2e1d
1 file changed
1-js/09-classes/03-static-properties-methods/article.md
@@ -192,7 +192,7 @@ class Rabbit extends Animal {}
192
alert(Rabbit.__proto__ === Animal); // true
193
194
// for regular methods
195
-alert(Rabbit.prototype.__proto__ === Animal.prototype);
+alert(Rabbit.prototype.__proto__ === Animal.prototype); // true
196
```
197
198
## Summary
0 commit comments