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

What is the signature of `respond_to_missing?` and what does its second argument mean?

def respond_to_missing?(name, include_private = false) name.to_s.start_with?("find_by_") || super end