oppure:
ciauzcodice:Array.prototype.remove = function(index){ for(var i=index,l=this.length; i<l; i++){this[i]=this[i+1];} delete this[l-1]; //riga opzionale: se vuoi curarti della garbage collection this.length=l-1; return this; }
oppure:
ciauzcodice:Array.prototype.remove = function(index){ for(var i=index,l=this.length; i<l; i++){this[i]=this[i+1];} delete this[l-1]; //riga opzionale: se vuoi curarti della garbage collection this.length=l-1; return this; }