42 lines
964 B
Plaintext
42 lines
964 B
Plaintext
|
|
||
|
{{alias}}( collection, fcn[, thisArg] )
|
||
|
Invokes a function for each element in a collection, iterating from right to
|
||
|
left.
|
||
|
|
||
|
When invoked, the input function is provided three arguments:
|
||
|
|
||
|
- `value`: collection value
|
||
|
- `index`: collection index
|
||
|
- `collection`: the input collection
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
collection: Array|TypedArray|Object
|
||
|
Input collection over which to iterate. If provided an object, the
|
||
|
object must be array-like (excluding strings and functions).
|
||
|
|
||
|
fcn: Function
|
||
|
The function to invoke for each element in a collection.
|
||
|
|
||
|
thisArg: any (optional)
|
||
|
Execution context.
|
||
|
|
||
|
Returns
|
||
|
-------
|
||
|
out: Array|TypedArray|Object
|
||
|
Input collection.
|
||
|
|
||
|
Examples
|
||
|
--------
|
||
|
> function logger( v, i ) { console.log( '%s: %d', i, v ); };
|
||
|
> var arr = [ 1, 2, 3, 4 ];
|
||
|
> {{alias}}( arr, logger )
|
||
|
3: 4
|
||
|
2: 3
|
||
|
1: 2
|
||
|
0: 1
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|