Q:

show timestamp as yyyy mm dd html angular

{{date  | date:'yyyy-MM-dd'}}
2
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');
}
1
import { DatePipe } from '@angular/common'
...
providers: [DatePipe]
0

New to Communities?

Join the community