All quizzes
SwiftIntroFill the blank

Fill in the operator so that `count` is `0` when `value` is nil (instead of crashing). Replace ____ in: `let count = value ____ 0`

let value: Int? = nil
// count should be 0 when value is nil
let count = value ____ 0