Created
June 28, 2018 12:36
-
-
Save sedera-tax/74d42f5366c8994d51925352a83aad49 to your computer and use it in GitHub Desktop.
Somme Array reduce
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 myArray = [1, 2, 3]; | |
| let arraySum = myArray.reduce((previous, current) => previous + current); | |
| console.log('Sum of array values is: ${arraySum}'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment