iOS Swift - Networking
Given this Swift code snippet, what will be printed if the server returns a JSON with a "message" key?
let data = ... // JSON data from server
if let json = try? JSONSerialization.jsonObject(with: data) as? [String: Any], let message = json["message"] as? String {
print(message)
} else {
print("No message")
}
