I am setting a optional property from previous view controller while pushing but even after optional binding its printing optional character in console. Here is my code
if let otp = self.confirmationCode {
print(otp)
}
It give output as follows:
"Optional(460207)"
What I am doing wrong ?