Format the date in Angular 9 with small letter h at the end of the date

317 views Asked by At

I'm using Angular 9 with CommonModule DatePipe transform method like:

this.datePipe.transform(sumDate, 'dd/mm/yyyy HH:mm:ss');

I get:

27/20/2020 17:20:14

And I need just a small letter h at the end of it, like:

27/20/2020 17:20:14h

I looked at the docs but couldn't find anything. Thanks.

1

There are 1 answers

0
Derek Wang On BEST ANSWER

You can attach a letter h by surrounding the literal text with '

{{my_date | date: 'yyyy/MM/dd HH:mm:ss\'h\''}}