Category: Ruby

Ruby Return statement

Ruby Return statement The Ruby Return statement in method syntax and example. Return syntax while condition -- Ruby code end --or begin -- Ruby code end while condition Return example def test a = 1 b = 2 c = 3...

Ruby Each Loop

Ruby Each Loop The Ruby Each loop statement syntax and example. Each loop syntax expression.each do value -- Ruby code end Each loop example [1,2,3,4,5].each do |x| puts("The value of x = #{x}" ) end Output The value of x =...

Ruby Break statement

Ruby Break statement The Ruby Break statement is used to leave a block when a condition is fulfilled. Break Statement syntax break Break Statement example for x in 1..7 if x > 4 then break end puts "The value of x...

Ruby Next statement

Ruby Next statement The Ruby Next statement is used to skip the rest of the current iteration. Next Statement syntax next Next Statement example for x in 1..5 if x < 4 then next end puts "The value of x =...

Ruby Until Loop

Ruby Until Loop The Ruby Until loop Statement. The Until loop executes ruby code while condition is false. Until loop syntax until condition do -- Ruby code end --or begin -- Ruby code end until condition Until loop example 1 $x...