Skip to content

Commit f1d070f

Browse files
authored
Merge pull request #1413 from paroche/patch-44
Update article.md
2 parents 3cdec02 + 73c20d8 commit f1d070f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/08-prototypes/04-prototype-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let rabbit = Object.create(animal);
2828
alert(rabbit.eats); // true
2929

3030
*!*
31-
alert(Object.getPrototypeOf(rabbit) === animal); // get the prototype of rabbit
31+
alert(Object.getPrototypeOf(rabbit) === animal); // true
3232
*/!*
3333

3434
*!*

0 commit comments

Comments
 (0)