Skip to content

Instantly share code, notes, and snippets.

@iamads
Created May 20, 2019 13:56
Show Gist options
  • Save iamads/c962e7368935ac8ca6ab1fe97a9ab0d9 to your computer and use it in GitHub Desktop.
Save iamads/c962e7368935ac8ca6ab1fe97a9ab0d9 to your computer and use it in GitHub Desktop.
myFilter
const myFilter = (array, callback) => {
const newArray = [];
array.forEach(element => {
if (callback(element)) {
newArray.push(element)
}
})
return newArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment