Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubyrefinements usingSingle-choice MCQ

Inside an active refinement that redefines an existing method, what does super refer to?

module Ext refine String do def upcase; "REFINED-" + super; end end end using Ext puts "abc".upcase