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

Given a non-optional `let count = 5`, what does `count ?? 0` produce?

let count = 5 let result = count ?? 0