Search code examples
angularangular-pipeangular-date-format

Angular8 Date Convert


I need to convert the date to 'dd/MM/yyyy h:mm:ss a'

From

Mon, 27 Dec 2021 17:32:52 GMT

To

27/12/2021 05:32:52 PM

I have tried the angular pipe but the output is wrong.

{{created_date | date: 'dd/MM/yyyy h:mm:ss a'}}

I am getting the below Output but the correct output supposed to be '27/12/2021 05:32:52 PM'

 27/12/2021 11:02:52 PM

Solution

  • formatDate(date, "dd-MM-y h:mm a", "en-US",'-0000');