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 trialTejveer Singh
2,224 Pointsoperator
In the editor below, initialScore is the players current score. Assuming they completed a single objective for this level, let's add 1 point to their score using the increment operator and assign the result to a constant named totalScore.
2 Answers
Cindy Lea
Courses Plus Student 6,497 Pointslet totalScore = ++initialScore
rh12
4,407 Points"++" is deprecated in Swift 3. To handle this upcoming language change, you can do the following:
var initialScore = 0
initialScore += 1
let totalScore = initialScore
You can read more about this language change here: (https://github.com/apple/swift-evolution/blob/master/proposals/0004-remove-pre-post-inc-decrement.md)