Skip to content

Instantly share code, notes, and snippets.

@maurobringolf
Last active August 31, 2017 15:21
Show Gist options
  • Save maurobringolf/56e3ac2f43258511450caacbc66d1d9a to your computer and use it in GitHub Desktop.
Save maurobringolf/56e3ac2f43258511450caacbc66d1d9a to your computer and use it in GitHub Desktop.
function find(arr, fn) {
 return arr.reduce((acc, item) => fn(item) ? acc || item : acc, undefined)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment