Skip to content

Instantly share code, notes, and snippets.

@thawkin3
Created August 24, 2022 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thawkin3/90ade13418ece2f62343915d00f42e5a to your computer and use it in GitHub Desktop.
Save thawkin3/90ade13418ece2f62343915d00f42e5a to your computer and use it in GitHub Desktop.
export const sumNumbersArray = (numbers) => {
let sum = 0;
for (let i = 0; i < numbers.length; i++) {
sum += numbers[i];
}
return sum;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment