Created
November 12, 2018 08:57
-
-
Save diewland/23262f835f23285a1728ba82b10e899c to your computer and use it in GitHub Desktop.
Custom forEach by yourself
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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