Skip to content

Instantly share code, notes, and snippets.

@bradparker
Created January 3, 2017 04:50
Show Gist options
  • Save bradparker/34c7bd8d627809333adcc3e02cd7f755 to your computer and use it in GitHub Desktop.
Save bradparker/34c7bd8d627809333adcc3e02cd7f755 to your computer and use it in GitHub Desktop.
Flat Map
const flatMap = (array, func) => (
array.reduce((result, element) => (
result.concat(func(element))
), [])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment