对不起,如果这是一个愚蠢的问题,但我是编程的新手......我已将我的代码添加到 JSfiddle。非常感谢您提供有关此代码为何不起作用的帮助。这是链接:目的是将 inAmounts 数组和 outAmounts 数组的值相加,并在 id 为“total”的 div 中显示结果
http://jsfiddle.net/soundCat/umbWX/1/ \
inAmounts=[2, 4, 3, 2, 1, 2];
outAmounts=[2, 3, 2, 3, 4];
function displayCurrentBalance() {
var sumIn = (inAmounts.reduce(function (a, b) {
return a + b;
}, 0));
var sumOut = (outAmounts.reduce(function (c, d) {
return c + d;
}, 0));
var total = sumIn - sumOut;
$("div#total").html("The current balance is " + total);
}