gpt4 book ai didi

JavaScript 构造函数更改值

转载 作者:行者123 更新时间:2023-12-01 01:50:39 25 4
gpt4 key购买 nike

我有一个问题,对于你们所有人来说可能都很简单。

例如,我得到了以下构造函数

class Example {
constructor(product, total) {
this.product= product;
this.total= total;
}
}

我现在如何更改产品的值(value),例如更改为苹果?

非常感谢您的帮助。

最佳答案

class Example {
constructor(product, total) {
this.product= product;
this.total= total;
}
}

let exampleObj = new Example('apple')
console.log(exampleObj.product) // 'apple'

关于JavaScript 构造函数更改值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51573655/

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