Created
June 21, 2018 06:44
-
-
Save mirajehossain/53c57cfc8ccaa21bc2c29510c2fedb0b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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