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 trialDavid Hunt
1,903 PointsWhy do you use the ++ at 3:26, and not the +1
just confused, because tried to do index +1, but it just goes crazy. When I do the ++ everything is fine
2 Answers
Nick Janes
5,487 PointsThe statement, index + 1, doesn't assign to anything. You probably mean
index = index + 1
This is assigning the value of the variable index to index + 1.
index++ is shorthand for index = index + 1
David Hunt
1,903 Pointsthankyou
Robert Jackson
313 PointsRobert Jackson
313 PointsThank you, you answered my question as well.