Skip to content

Instantly share code, notes, and snippets.

@violet-athena
Created November 28, 2016 01:21
Show Gist options
  • Save violet-athena/0124b5affb51216402b69348d24591ac to your computer and use it in GitHub Desktop.
Save violet-athena/0124b5affb51216402b69348d24591ac to your computer and use it in GitHub Desktop.
Javascript Sum of Array in one line
// manual implementation
const sum = ([first, ...rest]) => rest.length ? first + sum(rest) : first;
// using reduce
const sum = arr => arr.reduce((acc, el) => acc + el, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment