Skip to content

Commit fe58145

Browse files
committed
Update array.md
Array.prototyp.slice 改为 Array.prototype.slice
1 parent f80ff36 commit fe58145

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/array.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Array.from({ 0: "a", 1: "b", 2: "c", length: 3 });
3131
// [ "a", "b" , "c" ]
3232
```
3333

34-
对于还没有部署该方法的浏览器,可以用Array.prototyp.slice方法替代。
34+
对于还没有部署该方法的浏览器,可以用Array.prototype.slice方法替代。
3535

3636
```javascript
3737
const toArray = (() =>

0 commit comments

Comments
 (0)