Answers for "find sum of elements of array javascript"

27

array sum javascript

const arr = [1, 2, 3, 4];
const sum = arr.reduce((a, b) => a + b, 0);
// sum = 10
Posted by: Guest on January-26-2021
8

js sum of array

[1, 2, 3, 4].reduce((a, b) => a + b, 0)

// Output: 10
Posted by: Guest on July-26-2020

Code answers related to "find sum of elements of array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language