Optional
collection: ArrayLike<T>The collection to iterate over.
Optional
iteratee: ArrayIteratee<T, void>The function invoked per iteration.
Returns collection
.
Optional
collection: PlainObject<T>Optional
iteratee: RecordIteratee<T, void>
Iterates over elements of
collection
and invokesiteratee
for each element. The iteratee is invoked with three arguments: (value, index|key, collection). Iteratee functions may exit iteration early by explicitly returningfalse
.Note: As with other "Collections" methods, objects with a "length" property are iterated like arrays. To avoid this behavior use
forIn
orforOwn
for object iteration.Since
5.0.0
Alias
each
See
[[forEachRight]],[[forIn]],[[forInRight]],[[forOwn]],[[forOwnRight]]
Example