angular convert date to string format dd/mm/yyyy code example
Example 1: show timestamp as yyyy mm dd html angular
{{date | date:'yyyy-MM-dd'}}
Example 2: show timestamp as yyyy mm dd html angular
import { DatePipe } from '@angular/common'
...
providers: [DatePipe]