I'm using angular default date pipe for formatting my date, using this code.
{{'27-04-2021 08:30:00' | utcDate | date: 'EE, d MMMM OOOO'}}
The result is Tue, 27 April GMT+05:30
I have to show the result as Tue, 27 April GMT+5:30
I have to format the GMT format from XX:XX to X:XX
.
Thanks.