We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bba300 commit 3204e13Copy full SHA for 3204e13
1-js/07-object-oriented-programming/05-native-prototypes/article.md
@@ -33,7 +33,7 @@ We can check it like this:
33
let obj = {};
34
35
alert(obj.__proto__ === Object.prototype); // true
36
-// obj.toString === obj.__proto__toString == Object.prototype.toString
+// obj.toString === obj.__proto__.toString == Object.prototype.toString
37
```
38
39
Please note that there is no additional `[[Prototype]]` in the chain above `Object.prototype`:
0 commit comments