Skip to content

Instantly share code, notes, and snippets.

@johnakhilomen
Last active January 21, 2022 02:11
Show Gist options
  • Select an option

  • Save johnakhilomen/ff525b08a199046eb8394da8a7adc624 to your computer and use it in GitHub Desktop.

Select an option

Save johnakhilomen/ff525b08a199046eb8394da8a7adc624 to your computer and use it in GitHub Desktop.
let calculateSum = function (numbers) {
let sum = 0;
for (let i = 0; i < numbers.length; i++) {
sum += numbers[i];
}
return sum;
}
const sum = calculateSum([45,89,32,90,120]);
console.log(sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment