From 812cf804852fab13ac121de84aa0c6652bc7432f Mon Sep 17 00:00:00 2001 From: shc0743 <60457042+shc0743@users.noreply.github.com> Date: Tue, 11 Aug 2020 10:39:41 +0800 Subject: [PATCH] Update solution.md --- .../04-prototype-methods/3-compare-calls/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`: