Skip to content

Instantly share code, notes, and snippets.

@Mr-emeka
Created June 20, 2022 13:15
Show Gist options
  • Save Mr-emeka/c811140a26e4cf10b41b8446a2c850a3 to your computer and use it in GitHub Desktop.
Save Mr-emeka/c811140a26e4cf10b41b8446a2c850a3 to your computer and use it in GitHub Desktop.
DSA
function simpleArraySum(ar) {
// Write your code here
let sum = 0;
ar.forEach((a,index)=>{
sum += a;
})
return sum
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment