Skip to content

Instantly share code, notes, and snippets.

@himynameisdave
Created May 21, 2017 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save himynameisdave/546f4c03ca173220c18693348134963a to your computer and use it in GitHub Desktop.
Save himynameisdave/546f4c03ca173220c18693348134963a to your computer and use it in GitHub Desktop.
Reduce your fears about .reduce() - Array.find with reduce 02
const thisShitIsBananas = fruits.reduce((accumulator, fruit) => {
if (fruit.name === 'bananas') return fruit;
return accumulator
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment