I know this type of question is not really apropiated, but I'm stuck on it and some help would be apreciated it. I have the following date:
2018-04-26T08:19:30+02:00
But when I try to get the Hours and Minutes, the result I get is:
20:19 p
What I'm doing is the following:
let momentDay = (moment(el.time,'HH:mm a').format('HH:mm a'));
I don't know how I could get the real time, the one should give me: 08:19 instead of 20:19
Thanks