SwiftQuiz
#2

Optional Default Precedence

  • operator-precedence
  • optionals
Not verified Report an issue

Verified quizzes have their expected answer checked by compiling and running the code with the listed Swift toolchain during the site build.

let x: Int? = nil
print(x ?? 0 + 1)
Hint

What's the precedence of ?? compared to +?

Your answer

Pick the correct outcome