Skip to content

Commit 1986a2b

Browse files
authored
fix: typo
1 parent d59a6fe commit 1986a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/09-classes/05-extend-natives/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ alert(filteredArr); // 10, 50
2121
alert(filteredArr.isEmpty()); // false
2222
```
2323

24-
请注意一个非常有趣的事儿。内建的方法例如 `filter``map` 等 — 返回的正是子类 `PowerArray` 的新对象。它们内部使用了对象的 `constructor` 属性来实现这一功能。
24+
请注意一个非常有趣的事儿。内建的方法例如 `filter``map` 等 — 返回的正是子类 `PowerArray` 的新对象。它们内部使用了对象的 `constructor` 属性来实现这一功能。
2525

2626
在上面的例子中,
2727
```js

0 commit comments

Comments
 (0)