An open API service indexing awesome lists of open source software.

https://github.com/xotic750/array-reduce-right-x

Reduce an array (from right to left) to a single value.
https://github.com/xotic750/array-reduce-right-x

array browser javascript nodejs reduceright

Last synced: 2 months ago
JSON representation

Reduce an array (from right to left) to a single value.

Awesome Lists containing this project

README

          


Travis status


Dependency status


devDependency status


npm version


jsDelivr hits


bettercodehub score


Coverage Status

## array-reduce-right-x

Reduce an array (from right to left) to a single value.

### `module.exports` ⇒ \*

This method applies a function against an accumulator and each value of the
array (from right-to-left) to reduce it to a single value..

**Kind**: Exported member
**Returns**: \* - The value that results from the reduction.
**Throws**:

- TypeError If array is null or undefined.
- TypeError If callBack is not a function.
- TypeError If called on an empty array without an initial value.

| Param | Type | Description |
| -------------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| array | array | The array to iterate over. |
| callBack | function | Function to execute for each element. |
| [initialValue] | \* | Value to use as the first argument to the first call of the callback. If no initial value is supplied, the first element in the array will be used. Calling reduceRight on an empty array without an initial value is an error. |

**Example**

```js
import reduceRight from 'array-reduce-right-x';

console.log(
reduceRight(
[0, 1, 2, 3],
function(a, b) {
return a + b;
},
0,
),
); // sum is 6
```