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 trialBen Os
20,008 PointsIs foreach-loop just a shortened version of for-loop?
Is foreach-loop just a shortened version of for-loop?
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointsit is a simpler, cleaner way to iterate that reduces opportunity for error. it can be used frequently but is not suitable if you need to modify the collection you are looping through.
Ben Os
20,008 PointsBen Os
20,008 PointsJames, thank you. Can you please elaborate why is it not suitable if you need to modify the collection? I was thinking it's the best way to go because you either change for cars as car TO for aligators as aligator, OR you can just add and remove items from the collection, so I really can't see why it's not suitable for modifications...