A common feature in many languages, the Null Coalescing Operator, is a binary operator often used to shorten expressions of the type:
x = possiblyNullValue N
You can check with playground code below.
import UIKit var personalSite : String? let defaultSite = "http://www.google.com" var website = personalSite ?? defaultSite