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 trialrobertlynch3
688 PointsStuck on Challenge Task
I am having a bit of a brain flop when it comes to figuring this out - and I am sure the solution will be glaringly obvious once pointed out. However, I would very much appreciate if someone could help me get past this. I've spent an embarrassingly high amount of time trying to figure this out!
Thank you so much.
Kind regards,
- Rob.
// Enter your code below
var initialScore = 8
initialScore = ++initialScore
var totalScore = initialScore
1 Answer
David Papandrew
8,386 PointsRobert, you are close.
Here's the solution:
var initialScore = 8
let totalScore = ++initialScore
The exercise asks for a constant named totalScore, so you want to declare it with "let" rather than "var".
robertlynch3
688 Pointsrobertlynch3
688 PointsThank-you so much for your help!