Answers for "switch case ruby on rails"

8

ruby case statement

case {condition}
when {option1}
  #do something
when {option2}
  #do something
else #default
  #do something else
end
Posted by: Guest on February-25-2020
0

switch case ruby on rails

case a_variable # a_variable is the variable we want to compare
when 1    #compare to 1
  puts "it was 1" 
when 2    #compare to 2
  puts "it was 2"
else
  puts "it was something else"
end
Posted by: Guest on July-29-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language