Merge pull request #1311 from atimidguy/master

grammar fix
This commit is contained in:
Ilya Kantor 2019-09-02 21:58:03 +03:00 committed by GitHub
commit 1efa9c7fe8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ Answers:
2. `false`. 2. `false`.
Objects are assigned by reference. The object from `Rabbit.prototype` is not duplicated, it's still a single object is referenced both by `Rabbit.prototype` and by the `[[Prototype]]` of `rabbit`. Objects are assigned by reference. The object from `Rabbit.prototype` is not duplicated, it's still a single object referenced both by `Rabbit.prototype` and by the `[[Prototype]]` of `rabbit`.
So when we change its content through one reference, it is visible through the other one. So when we change its content through one reference, it is visible through the other one.