reduce()
ile dizideki tüm değerlerin toplamını bulmak
( ! ) Notice: Undefined index: description in /home/prototurk.com/public_html/app/controller/demo.php on line 171 Call Stack # Time Memory Function Location 1 0.0002 361088 {main}( ) .../index.php:0 2 0.0027 442936 require( '/home/prototurk.com/public_html/app/controller/demo.php' ) .../index.php:101
let sum = [0, 1, 2, 3].reduce(function (accumulator, currentValue) {
return accumulator + currentValue
}, 0)
console.log(sum) // 6
// alternatif olarak arrow function ile şöyle yazılabilir
let total = [ 0, 1, 2, 3 ].reduce(( accumulator, currentValue ) => accumulator + currentValue, 0)
console.log(total) // 6