0

Currently date is display like below enter image description here

I need to format this date like, Date of Loss: 08/07/2022 (DD/MM/YYYY)

This is my HTML code. I need to do it inside the HTML page. Is it possible?

<label class="col-form-label font-weight-bold">
    {{_modalViewData.dateOfLoss}}
</label>
Roy
  • 7,811
  • 4
  • 24
  • 47
Kumara
  • 471
  • 2
  • 10
  • 33

2 Answers2

3

You can use pipes. Pipes provide you the possibility to change the transform the string without changing the value itself.

<label class="col-form-label font-weight-bold">
    {{_modalViewData.dateOfLoss | date: 'dd/MM/yyyy'}}
</label>
Roy
  • 7,811
  • 4
  • 24
  • 47
0

Use Angular Date Pipe functionality for transform date to any specific format

https://angular.io/api/common/DatePipe

{{_modalViewData.dateOfLoss | date : 'dd/MM/YYYY'}} 
Mr.Developer
  • 489
  • 2
  • 8