Skip to content

Instantly share code, notes, and snippets.

@Higgs1
Created March 20, 2015 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Higgs1/e49068823a8779a83dd6 to your computer and use it in GitHub Desktop.
Save Higgs1/e49068823a8779a83dd6 to your computer and use it in GitHub Desktop.
CoffeeScript Sum Function
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