Skip to content

fix: join方法描述缺失 #1182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1-js/05-data-types/05-array-methods/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ alert(soldiers[1].age); // 23
- `map(func)` —— 根据对每个元素调用 `func` 的结果创建一个新数组。
- `sort(func)` —— 对数组进行原位(in-place)排序,然后返回它。
- `reverse()` —— 原位(in-place)反转数组,然后返回它。
- `split/join` —— 将字符串转换为数组并返回
- `split/join` —— 将字符串拆分为数组并返回/将数组项组合成字符串并返回
- `reduce/reduceRight(func, initial)` —— 通过对每个元素调用 `func` 计算数组上的单个值,并在调用之间传递中间结果。

- 其他:
Expand Down