Skip to content

Instantly share code, notes, and snippets.

@moimikey
Created September 11, 2014 15:33
Show Gist options
  • Save moimikey/1259c241250baa9a036d to your computer and use it in GitHub Desktop.
Save moimikey/1259c241250baa9a036d to your computer and use it in GitHub Desktop.
# reduce an array of numbers and return
# the sum
Util.reduceAddArray = (arr) ->
return unless Util.isArrayNumbers(arr)
_.reduce arr, (a, b) ->
a + b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment