90
Ruby for Loop
Ruby for loop iterates over a specific range of numbers. Hence, for loop is used if a program has fixed number of iterations.
Ruby for loop will execute once for each element in expression.
Syntax:
Ruby for loop using range
Example:
Output:
Ruby for loop using array
Example:
Output:
Next TopicRuby while and do while loop