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 trialUnsubscribed User
Courses Plus Student 2,114 PointsResult of a comparison?? A comparison between what I don't understand anything.
I can write this with an if or else statement but in this its totally confusing.
// Enter your code below
var initialScore = 8
let totalScore = ++initialScore
let isWinner =
2 Answers
jcorum
71,830 PointsI find the instructions a bit confusing. But here's what they want:
var initialScore = 8
let totalScore = ++initialScore
let isWinner = totalScore != 10
When they say assign the results of a comparison operation to isWinner, what they mean is you are to create a boolean expression and then assign it (or more accurately, its value) to the constant. If totalScore is 9 then totalScore != 10 will be false, and that value will be assigned to isWinner.
jcorum
71,830 PointsYes! I'm always backwards. I also turn left when I hear right!
9 != 10 is true!! Thanks.
Unsubscribed User
Courses Plus Student 2,114 PointsUnsubscribed User
Courses Plus Student 2,114 PointsThxx, and yeh their instructions are really confusing. They should be explicit. They make the ques look too formal. One more thing, your code is right but you said that "if totalScore =9 then totalScore != 10 will be false" how is that possible. It should be true.