Update article.md

This commit is contained in:
Ilya Kantor 2020-11-01 09:54:02 +03:00 committed by GitHub
parent 010bde1a97
commit dccca58f26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -122,6 +122,8 @@ alert(longEar.jumps); // true (from rabbit)
![](proto-animal-rabbit-chain.svg)
Now if we read something from `longEar`, and it's missing, JavaScript will look for it in `rabbit`, and then in `animal`.
There are only two limitations:
1. The references can't go in circles. JavaScript will throw an error if we try to assign `__proto__` in a circle.