Calculate Total Donations

You are a treasurer for a non-profit organization that collects donations from various donors. Each donation amount is recorded in an array. To keep track of the total donations, you need to write a function that calculates the sum of all donations in the array.

Write a function named calculateTotalDonations that takes one parameter donations which is an array containing numbers representing the donation amounts.

The function should return the sum of all the numbers in the donations array.

Example 1

Input: calculateTotalDonations([50, 75, 25, 100]);
Output: 250

Example 2

Input: calculateTotalDonations([10, 20, 30]);
Output: 60

Example 3

Input: calculateTotalDonations([]);
Output: 0

Are you stuck on this problem?

Get detailed, step-by-step solution and improve your JavaScript skills.

  • Detailed Explanation: Each solution comes with a comprehensive explanation, helping you understand the logic and concepts thoroughly.
  • Learn to Write Better Code: Even if you have written the code, discover ways to improve it and adopt best practices.
  • Save Time: Don’t waste hours struggling—get the solution and learn efficiently.
  • Lifetime Access: Get access to lifetime solutions for all problems available
Get the Solution

" I struggled with this problem for hours, but the solution provided here was clear and easy to follow. It helped me understand where I went wrong and improved my coding skills significantly." - Jane D.

If you're not satisfied, I offer a 7-day money-back guarantee.