TIL Swift 6.2 brings default to optional string interpolation making following possible:

var age: Int? = 48
print("Your age is \(age, default: "unknown")")

Read Understanding SwiftUI’s onChange.