Return the summation of an array


Posted by Christy on 2022-04-19

Description: Write a function named sum that accepts an array and return the summation of an array.

function sum(arr) {
  let result = 0;
  for (let i = 0; i < arr.length; i++) {
    result += arr[i];
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0

The other answers:

function sum(arr) {
  let i = 0;
  let result = 0;
  do {
    result += arr[i];
    i++;
  } while (i < arr.length);
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0
function sum(arr) {
  let i = 0;
  let result = 0;
  while (i < arr.length) {
    result += arr[i];
    i++;
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0









Related Posts

[MTR04] W2 D1 JavaScript 基礎

[MTR04] W2 D1 JavaScript 基礎

 Python Table Manners 系列

Python Table Manners 系列

Palindrome Number

Palindrome Number


Comments