Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftif let and guard letSingle-choice MCQ

After this guard runs successfully, where is the unwrapped variable available?

func describe(_ input: String?) { guard let text = input else { return } // line A }