これがばかげた質問である場合は申し訳ありませんが、私はプログラミングの初心者です....コードを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);
}