show timestamp as yyyy mm dd html angular
{{date | date:'yyyy-MM-dd'}}
show timestamp as yyyy mm dd html angular
{{date | date:'yyyy-MM-dd'}}
show timestamp as yyyy mm dd html angular
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');
}
new date in interpolation angular
// create a method in .ts file
convertDate(date){
return new Date(date+' UTC');//convert UTC time to Local time
}
//call the above function from .html file
{{convertDate(item.CreatedOn) | date:'medium'}}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us