Answers for "arguments.reduce"

43

reduce parameters

The reduce method in JavaScript takes four parameters:
1. Accumulator
2. Current Value
3. Current Index
4. Source Array

### Example
reduce((accumulator, currentValue, index, array) => { ... }, initialValue)
Posted by: Guest on June-25-2021
5

reduce()

const array1 = [1, 2, 3, 4];
const reducer = (accumulator, currentValue) => accumulator + currentValue;

// 1 + 2 + 3 + 4
console.log(array1.reduce(reducer));
// expected output: 10

// 5 + 1 + 2 + 3 + 4
console.log(array1.reduce(reducer, 5));
// expected output: 15
Posted by: Guest on January-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language