Skip to content

Instantly share code, notes, and snippets.

@maurobringolf
Last active June 3, 2017 14:10
Show Gist options
  • Save maurobringolf/ba0ba9b08c72751d0c678dbdfe56f1bb to your computer and use it in GitHub Desktop.
Save maurobringolf/ba0ba9b08c72751d0c678dbdfe56f1bb to your computer and use it in GitHub Desktop.
function filter(arr, fn) {
 return arr.reduce((acc, item) => fn(item) ? […acc, item] : acc, [])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment