Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLauren Wotherspoon
3,159 PointsFinal score not working
The final score keeps showing in the console as 15. I've done everything the video said but I can't see my mistake. Any advice on why it isn't working?
var score = 0; score += 10; score +=5;
var bonusPts = 100; var finalScore = score + bonusPts; console.log(score);
3 Answers
Steven Parker
231,236 PointsThis code does not show the final score in the console, it shows the "score" instead:
console.log(score); // last line of current code
console.log(finalScore); // what you probably wanted
volhaka
9,875 Pointsafter these : var score = 0; score += 10; score +=5; variable score equals 15 because 0 + 10 + 15 second line of your code doesn't change score, it declares 2 new variables (bonusPts and finalScore ) but score is still 15, so when you run console.log(score); you see it is 15
Lauren Wotherspoon
3,159 PointsThanks all!