Skip to content

Instantly share code, notes, and snippets.

@diewland
Created November 12, 2018 08:57
Show Gist options
  • Save diewland/23262f835f23285a1728ba82b10e899c to your computer and use it in GitHub Desktop.
Save diewland/23262f835f23285a1728ba82b10e899c to your computer and use it in GitHub Desktop.
Custom forEach by yourself
// https://stackoverflow.com/a/52501856/466693
Array.prototype.myForEach = function(callback){
this.forEach(function(r, i){
console.log('>>>', arguments);
callback(r, i);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment