diff --git a/index.html b/index.html index f7a7b08..d96dd1d 100644 --- a/index.html +++ b/index.html @@ -2261,9 +2261,10 @@
groupBy
does not directly mutate the object on which it is called but the object may be mutated by the calls to callbackfn.
The range of elements processed by groupBy
is set before the first call to callbackfn. Elements which are appended to the array after the call to groupBy
begins will not be visited by callbackfn. If existing elements of the array are changed their value as passed to callbackfn will be the value at the time groupBy
visits them; elements that are deleted after the call to groupBy
begins and before being visited are not visited.
The return value of groupBy
is an object that does not inherit from Object.prototype.
When the groupBy
method is called with one or two arguments, the following steps are taken:
The groupBy
function is intentionally generic; it does not require that its
_callbackfn_ is called with three arguments: the value of the element, the index of the element, and the object being traversed.
`groupBy` does not directly mutate the object on which it is called but the object may be mutated by the calls to _callbackfn_.
The range of elements processed by `groupBy` is set before the first call to _callbackfn_. Elements which are appended to the array after the call to `groupBy` begins will not be visited by _callbackfn_. If existing elements of the array are changed their value as passed to _callbackfn_ will be the value at the time `groupBy` visits them; elements that are deleted after the call to `groupBy` begins and before being visited are not visited.
+The return value of `groupBy` is an object that does not inherit from _Object.prototype_.
When the `groupBy` method is called with one or two arguments, the following steps are taken: