Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftnil coalescingSingle-choice MCQ

How many times is `fallback()` called here?

func fallback() -> Int { print("computing") return 99 } let value: Int? = 3 let result = value ?? fallback() print(result)