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

Inside this function, what is the type of `value` after the guard?

func describe(_ input: Int?) { guard let value = input else { return } // type of value here? }