We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b07c073 commit 8ac88afCopy full SHA for 8ac88af
1 file changed
1-js/08-prototypes/03-native-prototypes/article.md
@@ -94,7 +94,7 @@ alert(arr); // 1,2,3 <-- Array.prototype.toString 的结果
94
function f() {}
95
96
alert(f.__proto__ == Function.prototype); // true
97
-alert(f.__proto__.__proto__ == Object.prototype); // true, inherit from objects
+alert(f.__proto__.__proto__ == Object.prototype); // true,继承自 Object
98
```
99
100
## 基本数据类型
0 commit comments