Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created July 30, 2018 23:32
Show Gist options
  • Select an option

  • Save gladchinda/a5b9357417f18788662811ce883f8ab2 to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/a5b9357417f18788662811ce883f8ab2 to your computer and use it in GitHub Desktop.
// WITHOUT ARROW FUNCTION
const sum = numbers.reduce(function(a, b) {
return a + Number(b);
}, 0);
// WITH ARROW FUNCTION
const sum = numbers.reduce((a, b) => a + Number(b), 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment