xxxxxxxxxx
Unwrapping in Swift is essentially verifying if the
Optional value is nil or not, and then it performs a task
only if it's not nil.
You can perform unwrapping in the following ways:
Using an if else block.
Using Forced unwrapping. Using Optional binding.