gpt4 book ai didi

javascript - 方法 .includes() 不是函数错误

转载 作者:行者123 更新时间:2023-12-01 01:31:24 48 4
gpt4 key购买 nike

我正在通过 Eloquent Javascript 进行学习,我有以下代码作为练习之一。

class Group {
constructor(){
this.arr = []
}

add(value){
if(!this.has(value)) {
this.arr = this.arr.push(value)
}
}

has(value){
return this.arr.includes(value);
}

delete(value){
this.arr = this.arr.filter(n => n !== value)
}

static from(collection){
let rec = new Group;
for (let value of collection){
rec.add(value)
}
return rec
}
}

看起来是正确的,应该可以工作,但我收到错误

TypeError: arr.includes is not a function

那是关于什么的?我找不到答案。

最佳答案

来自docs ,

The push() method adds one or more elements to the end of an array and returns the new length of the array.

因此,问题出在这一行。此行之后 this.arr 不再是数组。

this.arr = this.arr.push(value)

因此,将其更新为以下内容

this.arr.push(value)

关于javascript - 方法 .includes() 不是函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53242108/

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