What are the only two values that are falsy?
Answer Posted / Tarun Chaudhary
The only two falsy values in Ruby are `nil` and `false`. All other objects, including an empty string (''), array ([]), or zero (0), are truthy.
Post New Answer View All Answers
Tell me the role of modules and mixins in ruby?
2