Skip to content

Instantly share code, notes, and snippets.

@rehasantiago
Created November 21, 2021 14:21
Show Gist options
  • Save rehasantiago/f0978d988968760c4c14eba4c5d4eb32 to your computer and use it in GitHub Desktop.
Save rehasantiago/f0978d988968760c4c14eba4c5d4eb32 to your computer and use it in GitHub Desktop.
Array.prototype.pForEach = function(callback) {
for (let i = 0; i < this.length; i++) {
callback(this[i], i, this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment