Skip to content

Commit 45c2e1d

Browse files
authored
Update article.md
Add results of 2nd alert
1 parent aa0c451 commit 45c2e1d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/09-classes/03-static-properties-methods

1 file changed

+1
-1
lines changed

1-js/09-classes/03-static-properties-methods/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class Rabbit extends Animal {}
192192
alert(Rabbit.__proto__ === Animal); // true
193193

194194
// for regular methods
195-
alert(Rabbit.prototype.__proto__ === Animal.prototype);
195+
alert(Rabbit.prototype.__proto__ === Animal.prototype); // true
196196
```
197197

198198
## Summary

0 commit comments

Comments
 (0)