Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Swift
easy
Swift
nil coalescing
Single-choice MCQ
What is printed?
let a: Int? = nil let b: Int? = nil let c = a ?? b ?? 5 print(c)