I have a date like this 2021-10-20T07:03:02-04:00 and from this date I need to make date like this: Wednesday 7:03am
2021-10-20T07:03:02-04:00
Wednesday 7:03am
My try:
moment(date).format('dddd h:mma');
But I get Wednesday 14:03am. Do you have any idea how to fix it?
Wednesday 14:03am
As mentioned in momentjs docs you can do it like this
moment(someday).format('dddd HH:MM a');
moments docs >>
This should work fine, the problem is that your initial date is in wrong format.
moment(date).format('dddd hh:mm a');