Answers for "arr reduce"

12

javascript sum of array

const sum = arr => arr.reduce((a, b) => a + b, 0);
Posted by: Guest on July-03-2020
41

javascript reduce

var array = [36, 25, 6, 15];

array.reduce(function(accumulator, currentValue) {
  return accumulator + currentValue;
}, 0); // 36 + 25 + 6 + 15 = 82
Posted by: Guest on May-21-2020
2

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
1

js reduce

Sum array elements:
let myArr = [1,2,3,-1,-34,0]
return myArr.reduce((a,b) => a + b,0)
Posted by: Guest on December-27-2020
1

javascript reduce

const sum = array.reduce((accumulator, element) => {
  return accumulator + element;
}, 0);
Posted by: Guest on April-11-2021
3

syntax of reduce in js

[1,2,3,4,5].reduce((acc, current)=>acc+current, 0)
Posted by: Guest on May-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language