如题,包括实现pop push 的返回值
1 回答
蓝山帝景
TA贡献1843条经验 获得超7个赞
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;
}
添加回答
举报
0/150
提交
取消