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 trialalexmacleary
1,093 Pointsit is not working i am type ing the right code right?
var initialScore = 8 initialScore = initialScore + 1
let totalScore = initialScore
// Enter your code below
var initialScore = 8
initialScore = initialScore + 1
let totalScore = initialScore
var initialScore = 9
1 Answer
jcorum
71,830 Pointsvar initialScore = 8
let totalScore = ++initialScore
let isWinner = initialScore != 10
First, the increment operator is ++. While initialScore + 1 will increment initialScore, they asked for the increment operator.
Second, you were asked to assign the result to totalScore, not back to initialScore.
Third, you didn't do the comparison (initialScore != 10) or assign the result of that comparison (which will be a Bool) back to isWinner.