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

Inside a refinement that overrides `String#length`, what does calling `super` do?

module Ext refine String do def length; super + 100; end end end using Ext p "abc".length