Created
March 20, 2015 22:04
-
-
Save Higgs1/e49068823a8779a83dd6 to your computer and use it in GitHub Desktop.
CoffeeScript Sum Function
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
sum = (arr, start = 0) -> | |
arr.reduce (x, y) -> | |
x + y | |
, start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment