We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59a6fe commit 1986a2bCopy full SHA for 1986a2b
1-js/09-classes/05-extend-natives/article.md
@@ -21,7 +21,7 @@ alert(filteredArr); // 10, 50
21
alert(filteredArr.isEmpty()); // false
22
```
23
24
-请注意一个非常有趣的事儿。内建的方法例如 `filter`,`map` 等 — 返回的正是子类 `PowerArray` 的新对象。它们内部使用了对象的 `constructor` 属性来实现这一功能。
+请注意一个非常有趣的事儿。内建的方法例如 `filter`,`map` 等 —— 返回的正是子类 `PowerArray` 的新对象。它们内部使用了对象的 `constructor` 属性来实现这一功能。
25
26
在上面的例子中,
27
```js
0 commit comments