Swift - Optionals
Find the issue in this Swift code snippet:
var score: Int! = 10 score = nil print(score + 5)
var score: Int! = 10 score = nil print(score + 5)
score unwraps IUO which is nil, causing runtime crash.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions