Optionals
Optional variable types are types that are allowed to contain a nil
values:
Optional types are denoted by a ?
We can safely unwrap an optional value, given that it exists, using !
like this:
Last updated
Optional variable types are types that are allowed to contain a nil
values:
Optional types are denoted by a ?
We can safely unwrap an optional value, given that it exists, using !
like this:
Last updated