Files
9minutes/app/assets/javascripts/helper/foreach.js
T
2012-12-29 01:53:06 +01:00

1 line
124 B
JavaScript

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