diff --git a/1-js/08-prototypes/04-prototype-methods/3-compare-calls/solution.md b/1-js/08-prototypes/04-prototype-methods/3-compare-calls/solution.md index a06cc060c8..5e6767ca36 100644 --- a/1-js/08-prototypes/04-prototype-methods/3-compare-calls/solution.md +++ b/1-js/08-prototypes/04-prototype-methods/3-compare-calls/solution.md @@ -1,5 +1,5 @@ -第一个调用中 `this == rabbit`,其他的 `this` 等同于 `Rabbit.prototype`,因为 `this` 就点符号前面的对象。 +第一个调用中 `this == rabbit`,其他的 `this` 等同于 `Rabbit.prototype`,因为 `this` 就是点符号前面的对象。 所以,只有第一个调用显示 `Rabbit`,其他的都显示的是 `undefined`: