Skip to content

Commit 09c06a1

Browse files
authored
fix: 优化翻译
1 parent 0c0dd9f commit 09c06a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/05-array-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ let arrayLike = {
182182
alert( arr.concat(arrayLike) ); // 1,2,[object Object]
183183
```
184184

185-
……但是,如果类似数组的对象具有 `Symbol.isConcatSpreadable` 属性,那么它就会被 `concat` 当作一个数组来处理:此对象中的元素将被添加:
185+
……但是,如果类数组对象具有 `Symbol.isConcatSpreadable` 属性,那么它就会被 `concat` 当作一个数组来处理:此对象中的元素将被添加:
186186

187187
```js run
188188
let arr = [1, 2];

0 commit comments

Comments
 (0)