Answers for "how to get the sum of numbers in an array in javascrit"

8

js sum of array

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

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

javascript sum of numbers

x = x + 5
Posted by: Guest on July-28-2021

Code answers related to "how to get the sum of numbers in an array in javascrit"

Code answers related to "Javascript"

Browse Popular Code Answers by Language