An alternative to reduce this method transforms object to a new
accumulator object which is the result of running each of its own
enumerable string keyed properties thru iteratee, with each invocation
potentially mutating the accumulator object. If accumulator is not
provided, a new object with the same [[Prototype]] will be used. The
iteratee is invoked with four arguments: (accumulator, value, key, object).
Iteratee functions may exit iteration early by explicitly returning false.
An alternative to
reduce
this method transformsobject
to a newaccumulator
object which is the result of running each of its own enumerable string keyed properties thruiteratee
, with each invocation potentially mutating theaccumulator
object. Ifaccumulator
is not provided, a new object with the same[[Prototype]]
will be used. The iteratee is invoked with four arguments: (accumulator, value, key, object). Iteratee functions may exit iteration early by explicitly returningfalse
.