Answers for "is reducer a array method in javascript"

8

reduce javascript

var depthArray = [1, 2, [3, 4], 5, 6, [7, 8, 9]];

depthArray.reduce(function(flatOutput, depthItem) {
    return flatOutput.concat(depthItem);
}, []);

=> [1, 2, 3, 4, 5, 6, 7, 8, 9];


// --------------
const prices = [100, 200, 300, 400, 500];
const total = prices.reduce((total, cur) => {return total + cur} )
//  init value = 0 => total = 1500;


// --------------
const prices = [100, 200, 300, 400, 500];
const total = prices.reduce(function (total, cur) => {
                   return total + cur
                }, 1 )
// init value = 1 => so when plus all numnber will be result => 1501;

// --------------
const prices = [100, 200, 300, 400, 500];
const total = prices.reduce((total, cur) => total + cur )
// 1500;
Posted by: Guest on March-03-2022
2

javascript reduce

/* reduce method: combine an array's values together, left to right */

let myArray = [1, 2, 3];

let a = myArray.reduce((initial, current) => initial + current, 0);
// [0 + 1 + 2 + 3] → 6

let b = myArray.reduce((initial, current) => initial + (current*10), 7);
// [7 + (1*10) + (2*10) + (3*10)] → 67

// Combine right to left with .reduceRight
let c = myArray.reduceRight((initial, current) => initial / current, 30);
// [30 / 3 / 2 / 1] → 5

/* Syntax: array.reduce((accumulator, currentValue) =>
combineFunction, accumulatorStartValue); */
Posted by: Guest on March-05-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language