Get the week day later

Variable weekDaysList holds a list of weekdays, which are represented as strings. Write a function that have 2 params: weekDayCurrent (STRING) - representing the day of the week for the current day and weekDaysLater (INTEGER) - representing how many days later For example: if weekDayCurrent = “Tuesday” and weekDaysLater = 4, the function should return ... Read more