![]()
|
|
Loops are how you run a piece of code repeatedly as long as a condition is true, or for a specific number of times. |
|
Ruby has several ways to loop. |
|
The “while” loop |
|
Runs the supplied code block as long as the condition is true. |
|
The “until” loop |
|
Runs the supplied code block as long as the condition is false. |
|
Both |
|
The “for..in” loop |
|
Use |
|
|
|
The “each” loop |
|
A better way to iterate over an array or a hash is the
|
|
|
|
The Kernel “loop” |
|
You can also create a
loop using the Kernel module’s |
|
The “n.times” loop |
|
If you want to do a thing an ‘n’ number of times, then
there’s the Integer class’s |
|
Note: The above 3 - |
|
Which one to use?For enumerable types, prefer the |
|
Ruby folks rarely use |
|
But the most common way of looping is actually the
various methods defined in the |
|
Official docs
|
Next topic: Numbers .