For some reason, I can't convert the Price string to double. When I do it always returns nil.
       func calculateAirfare(checkedBags: Int, distance: Int, travelers: Int) {
        let bagsPrices = Double(checkedBags * 25)
        let mileCosts = Double(distance) * 0.10
        let price = (bagsPrices + mileCosts) * Double(travelers)
        /// Format price
        let currencyFormatter = NumberFormatter()
        currencyFormatter.numberStyle = .currency
        let priceString = currencyFormatter.string(from: NSNumber(value: price))
         print(priceString) -> "Optional("$750.00")"
        if let double = Double(priceString) {
            print(double) -> nil
        }
    }