蓝山帝景
Array.prototype._push = function(item) { this[this.length] = item; return this.length;}Array.prototype._pop = function() { if (this.length === 0) return void 0; var temp = this[this.length - 1]; this.length--; return temp;}