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 trialBlaize Lange
2,298 PointsDo people ever really use while and do...while loops or is it just mainly for loops?
It seems like while and do...while loops were good for explaining how loops work, but for loops seem most efficient. Are for loops the main type of loop used in JS?
2 Answers
Alexandre Babeanu
10,947 PointsThere are situations where you have to use a while loop. say for instance that you have a dice and you want to roll the dice until the user says Stop.
you can't use a for loop you have to wait until the user triggers the stop
so while user hasn't stopped roll the dice.
but when working with arrays for loops are definetly the goto.
Blaize Lange
2,298 Pointscool thanks I actually realized that in a later video. Thanks for the help!