How to find the sum of an array of numbers

Matthew C.

The Problem

You want to find the sum of an array of numbers. How do you do this with JavaScript?

The Solution

There are various ways to find the sum of an array of numbers in JavaScript. We’ll look at four common ways.

Using a for loop

The most performant method is to use a for loop:

const arr = [23, 34, 77, 99, 324]; let sum = 0; for (let i = 0; i < arr.length; i++) { sum += arr[i]; } console.log(sum);

The sum of the array of numbers is calculated by looping through the array and adding the value of each array element to a variable called sum.

Using reduce()

Another option is to use the reduce() array method:

const arr = [23, 34, 77, 99, 324]; const sum = arr.reduce((accumulator, currentValue) => accumulator + currentValue, 0); console.log(sum);

The reduce() method calculates the sum of the array of numbers by executing the “reducer” callback function on each element of the array. The accumulator argument is the value of the previous call of the function. Its initial value is 0; the currentValue is the value of the array element. For each call of the function, the value of the previous function call is added to the value of the array element. The return value of the reduce() method is the final value of the “reducer” callback function after it’s been executed on each element of the array. In this case, it calculates the sum of the array numbers.

Using forEach()

The forEach() array method executes the callback function argument for each element of the array:

const arr = [23, 34, 77, 99, 324]; let sum = 0; arr.forEach((el) => sum += el); console.log(sum);

It uses a sum variable, like the for loop method, to calculate the sum of the array numbers.

Using a for...of loop

A for…of loop can also be used to iterate through the array items and calculate the sum of the array of numbers:

const arr = [23, 34, 77, 99, 324]; let sum = 0; for (const el of arr) { sum += el; } console.log(sum);

Get Started With Sentry

Get actionable, code-level insights to resolve JavaScript performance bottlenecks and errors.

  1. Create a free Sentry account

  2. Create a JavaScript project and note your DSN

  3. Grab the Sentry JavaScript SDK

<script src="https://browser.sentry-cdn.com/7.112.2/bundle.min.js"></script>
  1. Configure your DSN
Sentry.init({ dsn: 'https://<key>@sentry.io/<project>' });

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

Share on Twitter
Bookmark this page
Ask a questionJoin the discussion

Related Answers

A better experience for your users. An easier life for your developers.

    TwitterGitHubDribbbleLinkedinDiscord
© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.