Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Swift
easy
Swift
optionals and unwrapping
Single-choice MCQ
What is the result of force-unwrapping here?
let dict = ["a": 1] let v = dict["b"]! print(v)