Files
9minutes/public/javascripts/helper/foreach.js
T

1 line
124 B
JavaScript

Array.prototype.foreach = function( callback ) {
for( var k=0; k<this .length; k++ ) {
callback( k, this[ k ] );
}
}