I'm converting the utc from the server to local time using javascript and it works.But I need only the time rather than the date+time.Without using moment. server time(UTC format) : "2018-02-03T10:00:00" converted local time :2018-02-03T04:30:00.000Z In the above local time I need only "04:30" alone .Is there any way to get it?
I tried the below one to convert from utc to local time
new Date(response.data.maxDate).toISOString();