gpt4 book ai didi

javascript - 在 Javascript 上求和数组

转载 作者:行者123 更新时间:2023-11-28 20:28:57 24 4
gpt4 key购买 nike

您好,我正在尝试使用以下代码对 Javascript 上的数组求和。

var data[]: 
var total=0;
data.push[x]; // x is numbers which are produced dynamically.
for(var i=0, n=data.length; i < n; i++)
{
total=total+data[i];
}
alert(total)

例如,如果 x 值分别为 5、11、16、7。它显示总值为 511167,而不是值 5+11+16+7=39 的总和你知道为什么会出现这样的结果吗?谢谢。

最佳答案

使用parseInt()函数 JavaScript

total=parseInt(total)+parseInt(data[i]);

关于javascript - 在 Javascript 上求和数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16792043/

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