Skip to content

Instantly share code, notes, and snippets.

@mirajehossain
Created June 21, 2018 06:44
Show Gist options
  • Save mirajehossain/53c57cfc8ccaa21bc2c29510c2fedb0b to your computer and use it in GitHub Desktop.
Save mirajehossain/53c57cfc8ccaa21bc2c29510c2fedb0b to your computer and use it in GitHub Desktop.
let arr = [1,2,3,4,5];
let result = arr.reduce((accumulator,currentValue)=>{
return accumulator + currentValue;
});
console.log(result); /// 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment