Created
September 20, 2015 15:21
-
-
Save chuck0523/7df5cf5157e59e943460 to your computer and use it in GitHub Desktop.
This file contains 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
"use strict"; | |
var log = function log(x) { | |
console.log(x); | |
}; | |
var ary = [10, 23, 4, 0, 77]; | |
var s = ary.reduce(function(a, b) { | |
return a + b; | |
}); | |
log(s); // 114 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment