Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created August 22, 2016 17:00
Show Gist options
  • Save ericelliott/84599283f9afac83a4b7ebc515be9014 to your computer and use it in GitHub Desktop.
Save ericelliott/84599283f9afac83a4b7ebc515be9014 to your computer and use it in GitHub Desktop.
const initialState = 0;
const reducer = (state = initialState, data) => state + data;
const total = [0, 1, 2, 3].reduce(reducer);
console.log(total); // 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment