Skip to content
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

Editorial: Tweak Array.prototype.join #661

Merged
merged 1 commit into from
Aug 12, 2016
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
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -29726,8 +29726,8 @@ <h1>Array.prototype.join (_separator_)</h1>
<emu-alg>
1. Let _O_ be ? ToObject(*this* value).
1. Let _len_ be ? ToLength(? Get(_O_, `"length"`)).
1. If _separator_ is *undefined*, let _separator_ be a single-element String `","`.
1. Let _sep_ be ? ToString(_separator_).
1. If _separator_ is *undefined*, let _sep_ be a single-element String `","`.
1. Else, let _sep_ be ? ToString(_separator_).
1. Let _R_ be an empty String.
1. Let _k_ be 0.
1. Repeat, while _k_ &lt; _len_
Expand Down