R
Q. What is the output of the following code?
Code:
var name: String? = "Swift"
if let unwrappedName = name {
print(unwrappedName)
}
if let unwrappedName = name {
print(unwrappedName)
}
- Correct Answer - Option(B)
- Views: 23
- Filed under category Swift (iOs)
- Hashtags:
Discusssion
Login to discuss.