gpt4 book ai didi

JavaScript 原型(prototype)数组成员找不到未定义的推送

转载 作者:行者123 更新时间:2023-12-04 15:31:36 27 4
gpt4 key购买 nike

<分区>

我正在尝试实现一个堆栈。当我尝试插入 arr 时弹出此错误

TypeError: Cannot read property 'push' of undefined

var MinStack = function() {
let Min = null;
const arr = new Array(); // I also tried arr = []
};

/**
* @param {number} x
* @return {void}
*/
MinStack.prototype.push = function(x) {
this.arr.push(x);
this.Min = Math.min(...arr);
};

我搜索了答案,但没有找到为什么我无法在构造函数中访问我的 arr?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com