You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 1-js/08-prototypes/01-prototype-inheritance/article.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ alert( rabbit.jumps ); // true
64
64
65
65
Здесь строка `(*)` устанавливает `animal` как прототип для `rabbit`.
66
66
67
-
Затем, когда `alert` пытается прочитать свойство `rabbit.eats``(**)`, его нет в `rabbit`, поэтому JavaScript следует по ссылке `[[Prototype]]` и находит её в `animal` (смотрите снизу вверх):
67
+
Затем, когда `alert` пытается прочитать свойство `rabbit.eats``(**)`, его нет в `rabbit`, поэтому JavaScript следует по ссылке `[[Prototype]]` и находит его в `animal` (смотрите снизу вверх):
0 commit comments