From 45c2e1d91ae084ff37d91496e3468cfcc71d03b0 Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Fri, 4 Oct 2019 15:51:09 -0600 Subject: [PATCH] Update article.md Add results of 2nd alert --- 1-js/09-classes/03-static-properties-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/09-classes/03-static-properties-methods/article.md b/1-js/09-classes/03-static-properties-methods/article.md index 583fabcf..8e08514f 100644 --- a/1-js/09-classes/03-static-properties-methods/article.md +++ b/1-js/09-classes/03-static-properties-methods/article.md @@ -192,7 +192,7 @@ class Rabbit extends Animal {} alert(Rabbit.__proto__ === Animal); // true // for regular methods -alert(Rabbit.prototype.__proto__ === Animal.prototype); +alert(Rabbit.prototype.__proto__ === Animal.prototype); // true ``` ## Summary