Javascript Array update(delta)

Description

Javascript Array update(delta)


'use strict';//w w  w.  ja va2 s . c o  m

Array.prototype.update = function(delta){
 for(var i = 0; i < this.length; i++){
  this[i].update(delta);
 }
}



PreviousNext

Related