Skip to content

Instantly share code, notes, and snippets.

@funador
Last active May 26, 2019 20:34
Show Gist options
  • Save funador/1dd0555d44546930bb45537aaab09792 to your computer and use it in GitHub Desktop.
Save funador/1dd0555d44546930bb45537aaab09792 to your computer and use it in GitHub Desktop.
Array.prototype.myFilter = function(callback) {
const arr = []
for (let i = 0; i < this.length; i++) {
const item = this[i]
if(callback(item, i, this)) {
arr.push(item)
}
}
return arr
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment