convert date to string angular code example
Example 1: ts change date format
import { DatePipe } from '@angular/common'
...
constructor(public datepipe: DatePipe){}
...
myFunction(){
this.date=new Date();
let latest_date =this.datepipe.transform(this.date, 'yyyy-MM-dd');
}
Example 2: show timestamp as yyyy mm dd html angular
{{date | date:'yyyy-MM-dd'}}