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.
2 parents ba5424a + 8f3831b commit edc6126Copy full SHA for edc6126
1-js/08-prototypes/03-native-prototypes/article.md
@@ -33,7 +33,9 @@ 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
+
37
+alert(obj.toString === obj.__proto__.toString); //true
38
+alert(obj.toString === Object.prototype.toString); //true
39
```
40
41
Please note that there is no more `[[Prototype]]` in the chain above `Object.prototype`:
0 commit comments