Answers for "reduce w3schools"

8

javascript sum array values

function getArraySum(a){
    var total=0;
    for(var i in a) { 
        total += a[i];
    }
    return total;
}

var payChecks = [123,155,134, 205, 105]; 
var weeklyPay= getArraySum(payChecks); //sums up to 722
Posted by: Guest on July-31-2019
6

reduce javascript

//note idx and sourceArray are optional
const sum = array.reduce((accumulator, element[, idx[, sourceArray]]) => {
	//arbitrary example of why idx might be needed
	return accumulator + idx * 2 + element 
}, 0);
Posted by: Guest on April-26-2020
-1

javascript, reduce

const myReduce = myArray.reduce((acc, item) => {
	acc += item
})
Posted by: Guest on April-07-2020
1

reduce function javascript

array.reduce(function(acumulador, elementoAtual, indexAtual, arrayOriginal), valorInicial)
Posted by: Guest on May-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language