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

What is printed?

let a: Int? = nil let b: Int? = nil let c = a ?? b ?? 5 print(c)