gpt4 book ai didi

javascript - 在 JS 中添加以下方法的错误输出

转载 作者:行者123 更新时间:2023-11-30 10:21:22 25 4
gpt4 key购买 nike

这段代码必须给出总现金的输出,而是给出了错误的输出?谁能告诉我其中有什么问题。

var cashRegister = {
total:0,
add: function(itemCost)
{
this.total += itemCost;
}
};

var i;

for (i=0; i<4; i++)
{
var a = prompt("Cost");
cashRegister.add(a);
}
//call the add method for our items


//Show the total bill
console.log('Your bill is '+cashRegister.total);

最佳答案

您添加的字符串。

代替:

this.total += itemCost;

尝试:

this.total += +itemCost;

关于javascript - 在 JS 中添加以下方法的错误输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21362937/

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