Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit 6c47d8a

Browse files
wording change to the simple description in the note (#27)
1 parent 9f29183 commit 6c47d8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec.emu

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ location: https://tc39.es/proposal-array-grouping/
2525
<emu-clause id="sec-array.prototype.groupby">
2626
<h1>Array.prototype.groupBy ( _callbackfn_ [ , _thisArg_ ] )</h1>
2727
<emu-note>
28-
<p>_callbackfn_ should be a function that accepts three arguments and returns a value that is coercible to a property. `groupBy` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new object of arrays, where the property key is the return value and array is filled with the items that return that property key.</p>
28+
<p>_callbackfn_ should be a function that accepts three arguments. `groupBy` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new object of arrays. Each value returned by _callbackfn_ is coerced to a property key, and the associated element is included in the array in the constructed object according to this property key.</p>
2929
<p>If a _thisArg_ parameter is provided, it will be used as the *this* value for each invocation of _callbackfn_. If it is not provided, *undefined* is used instead.</p>
3030
<p>_callbackfn_ is called with three arguments: the value of the element, the index of the element, and the object being traversed.</p>
3131
<p>`groupBy` does not directly mutate the object on which it is called but the object may be mutated by the calls to _callbackfn_.</p>
@@ -61,7 +61,7 @@ location: https://tc39.es/proposal-array-grouping/
6161
<emu-clause id="sec-array.prototype.groupbymap">
6262
<h1>Array.prototype.groupByMap ( _callbackfn_ [ , _thisArg_ ] )</h1>
6363
<emu-note>
64-
<p>_callbackfn_ should be a function that accepts three arguments and returns any value. `groupByMap` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new Map of arrays, where the key is the return value and array is filled with the items that return that key.</p>
64+
<p>_callbackfn_ should be a function that accepts three arguments. `groupByMap` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new Map of arrays. Each value returned by _callbackfn_ is used as a key in the Map, and the associated element is included in the array in the constructed Map according to this key.</p>
6565
<p>If a _thisArg_ parameter is provided, it will be used as the *this* value for each invocation of _callbackfn_. If it is not provided, *undefined* is used instead.</p>
6666
<p>_callbackfn_ is called with three arguments: the value of the element, the index of the element, and the object being traversed.</p>
6767
<p>`groupByMap` does not directly mutate the object on which it is called but the object may be mutated by the calls to _callbackfn_.</p>

0 commit comments

Comments
 (0)