Skip to content

Instantly share code, notes, and snippets.

@ppraksa
Created May 20, 2019 08:25
Show Gist options
  • Save ppraksa/f4f299e92153bef6bf5b6d3cea603fc9 to your computer and use it in GitHub Desktop.
Save ppraksa/f4f299e92153bef6bf5b6d3cea603fc9 to your computer and use it in GitHub Desktop.
Array.prototype.map2 = function(fn) {
this.forEach(function(e) {
fn.call(this,e);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment