I need to print timestamp custom format with timezone (short format):
{{ '2017-06-29 09:55:01.956-0400' | date:'MMM dd, y hh:mm a' }}
Output:
Jun 29, 2017 07:25 PM
But I need to append with timezone, for example:
Jun 29, 2017 07:25 PM IST
Angular provides timezone option with 'z'
and 'Z'
but none gave the expected result:
'MMM dd, y hh:mm a z' ==> Jun 29, 2017 07:25 PM India Standard Time
'MMM dd, y hh:mm a Z' ==> Jun 29, 2017 07:25 PM GMT+5:30
I want Jul 7, 2017, 12:27:01 AM IST
.