Swift - Control Flow
You want to safely unwrap two optionals and exit early if either is nil. Which is the best way to use
guard for this?func combine(_ a: String?, _ b: String?) {
// Fill in guard statement
print("Combined: \(aVal) & \(bVal)")
}