I have an array of days eg :
days_of_week: ["SUNDAY", "TUESDAY", "THURSDAY"]
hours : 19
minute : 30
this array denotes the days in UTC timezone.
I want to display the array of days in local timezone.
So, the above example would look like (at IST (UTC+5:30))
days : Mon, Wed, Fri
hrs : 01
min : 00
I can convert the time but I'm not able to figure out the offset calculation for days.