Explore Library
Code QuizBeginner

Using an Optional Without Unwrapping

Spot the missing unwrap in this optional usage.

Codeswift
let age: Int? = 30
let nextAge = age + 1
print(nextAge)

What is the bug in this code?