猿问

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

如题,包括实现pop push 的返回值

Qyouu
浏览 622回答 1
1回答

蓝山帝景

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;}
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答