0 votes
in Ruby by
Explain until loop in Ruby.

1 Answer

0 votes
by

Ruby until loop runs until the given condition evaluates to true. It exits the loop when condition becomes true. It is opposite of the while loop.

...