Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have some simple code that should add two numbers and it seems to keep adding them, i.e. if I have a variable that is initialized as 0 , I add 100 once, and then I add 200, it seems to add it as follows 0 + 100 + 100 + 200, returning 400 NOT 300. How can I get this to add correctly?

function calcScores(amount) {
    amount = parseInt(amount,10);
    for(var key in teamSelection) {
        if (teamSelection[key]['Selected']) {
            score = parseInt(teamSelection[key]['Score'],10);
            var total = +score + +amount;
            teamSelection[key]['Score'] = total;
        }
    }
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
291 views
Welcome To Ask or Share your Answers For Others

1 Answer

var total = +score + +amount;

This line is confusing to me. If you want to add score and amount to total, use

var total += score + amount;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...