Skip to content

Instantly share code, notes, and snippets.

@krazov
Created March 4, 2017 22:10
Show Gist options
  • Save krazov/c951940395dbedf5abdf29588e3d5ed6 to your computer and use it in GitHub Desktop.
Save krazov/c951940395dbedf5abdf29588e3d5ed6 to your computer and use it in GitHub Desktop.
The most dull use of `reduce()`
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var sum = array.reduce((result, value) => result + value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment