So you can unwrap an optional like this
if let var1 {
}
else {
}
What is the opposite for this one such that I only want to put code in the else.
Should I go with
if var1 == nil {
}
or is there something close like
if !(let var1) {
}
Thoughts?