Array.prototype.deleteItem = function(t) { len = this.length; r = this.slice(0,t) g = this.slice((t+1),len) g.unshift(r) return g };