The collection to iterate over.
The path of the method to invoke or the function invoked per iteration.
The arguments to invoke each method with.
Returns the array of results.
Invokes the method at path
of each element in collection
, returning
an array of the results of each invoked method. Any additional arguments
are provided to each invoked method. If path
is a function, it's invoked
for, and this
bound to, each element in collection
.
Returns the array of results.
Invokes the method at path
of each element in collection
, returning
an array of the results of each invoked method. Any additional arguments
are provided to each invoked method. If path
is a function, it's invoked
for, and this
bound to, each element in collection
.
The collection to iterate over.
Optional
path: anyThe path of the method to invoke or the function invoked per iteration.
The arguments to invoke each method with.
Returns the array of results.
Invokes the method at
path
of each element incollection
, returning an array of the results of each invoked method. Any additional arguments are provided to each invoked method. Ifpath
is a function, it's invoked for, andthis
bound to, each element incollection
.