Day 14 is optionals, guards, nil coalescing, optional chaining, and optional try.

Guards are new to me but I like them:

func double(number: Int?) -> Int? {
	guard let number = number else {
		return nil
	}
	return number * 2
}

Two weeks in the books! #100DaysOfSwiftUI

Chasen @chasen