I am practicing swift, and currently writing an easy function to show the schedule of the day. The return
statement should only include busyDay
if it contains a value. I hoped this would be done automatic, but it`s not.
func scheduleToday (date: String, day: String, numberOfMeetings: Int?) -> String {
var meetingMessage = ""
var busyDay: String!
if var meetings = numberOfMeetings {
if meetings > 4 {
busyDay = "Today is a busy day!"
}
meetingMessage = "\(meetings) meetings"
} else {
meetingMessage = "no meetings today."
}
return "| \(date) - \(day) | Good morning. \(busyDay) You have \(meetingMessage)."
}
If numberOfMeetings
is 4 or less, the returned string says:
// | 17th of June - Wedensday | Good morning. nil You have 3 meetings.
You can just add an else statement to your
if
which sets budyDay to an empty string