Skip to content

Instantly share code, notes, and snippets.

@thinkt4nk
Created May 17, 2011 13:58
Show Gist options
  • Save thinkt4nk/976511 to your computer and use it in GitHub Desktop.
Save thinkt4nk/976511 to your computer and use it in GitHub Desktop.
array.each.js
Array.prototype.each = function(callback) {
for( i=0; i<this.length; i++ ) {
callback(this[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment