Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubymethod_missing and respond_to_missingSingle-choice MCQ

What is the most important reason to call `super` in the fallback branch of a `method_missing` definition?

def method_missing(name, *args) if name.to_s.start_with?("get_") # ... handle else super end end