Answers for ".reduce mdn"

38

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
8

how to use reduce in javascript

const sum = array.reduce((accumulator, element) => {
  return accumulator + element;
}, 0);
// An example that will loop through an array adding
// each element to an accumulator and returning it
// The 0 at the end initializes accumulator to start at 0
// If array is [2, 4, 6], the returned value in sum
// will be 12 (0 + 2 + 4 + 6)

const product = array.reduce((accumulator, element) => {
  return accumulator * element;
}, 1);
// Multiply all elements in array and return the total
// Initialize accumulator to start at 1
// If array is [2, 4, 6], the returned value in product
// will be 48 (1 * 2 * 4 * 6)
Posted by: Guest on January-04-2020
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
3

reduce javascript

let sum = arr.reduce((curr, index) => curr + index);
Posted by: Guest on December-24-2020
1

js reduce

let newArray = array.reduce( (acc, element, index, originalArray) => {
    // return acc += element
}, initialValue)
Posted by: Guest on May-15-2021
6

.reduce mdn

arr.reduce(callback( accumulator, currentValue[, index[, array]] )[, initialValue])
Posted by: Guest on March-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language