Merge pull request #1416 from paroche/patch-50

Update article.md
This commit is contained in:
Ilya Kantor 2019-10-07 04:45:43 +03:00 committed by GitHub
commit 07cb1af37f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -192,7 +192,7 @@ class Rabbit extends Animal {}
alert(Rabbit.__proto__ === Animal); // true alert(Rabbit.__proto__ === Animal); // true
// for regular methods // for regular methods
alert(Rabbit.prototype.__proto__ === Animal.prototype); alert(Rabbit.prototype.__proto__ === Animal.prototype); // true
``` ```
## Summary ## Summary