Locked lesson.
About this lesson
Using while loops in Ruby.
Exercise files
Download this lesson’s related exercise files.
While Loops.docx59 KB While Loops - Solution.docx
59 KB
Quick reference
While Loops
You can loop through things with a While loop.
When to use
Anytime you need to loop through things, you can use a while loop.
Instructions
To create a while loop:
counter = 0
while counter < 10 do
#loop code
counter += 1
end
Hints & tips
- While loops are an easy way to loop
- Don't forget to increment your counter or you'll get an infinite loop!
Lesson notes are only available for subscribers.