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 trial

iOS Swift Basics (retired) Control Flow While and Do-While Loop

Why 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

The 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

Robert Jackson
Robert Jackson
313 Points

Thank you, you answered my question as well.

thankyou