Skip to content

Commit

Permalink
Update article.md
Browse files Browse the repository at this point in the history
Add results of 2nd alert
  • Loading branch information
paroche authored Oct 4, 2019
1 parent aa0c451 commit 45c2e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/09-classes/03-static-properties-methods/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 45c2e1d

Please sign in to comment.