How to sum every number in an array of numbers.

Using the ES2015 syntax it can be done as follows: let numbers = [10, 42, 5, 87, 61, 34, 99]; let sum = numbers.reduce((a,b) => a + b); where the reduce signature is Array.prototype.reduce(accumulator, element, callback, startingValue) alternatively a for loop could be used.

MC

Related Javascript Mentoring answers

All answers ▸

How to check if value exists in an object in JavaScript?


What is the difference between global and local variables?


What is the importance of javascript in the web?


Find the sum of all multiples of 2 less than 10000