为了账号安全,请及时绑定邮箱和手机立即绑定

不用数组操作方法实现数组的`pop`、`push` 方法

不用数组操作方法实现数组的`pop`、`push` 方法

Qyouu 2018-08-19 14:13:01
如题,包括实现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;

}


查看完整回答
反对 回复 2018-09-15
  • 1 回答
  • 0 关注
  • 621 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信