Answers for "typescript convert string to date format yyyy-mm-dd"

1

typescript convert date to string format dd/mm/yyyy

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');
}
Posted by: Guest on February-17-2020
2

convert date format from yyyy-mm-dd to dd-mm-yyyy using value javascript

date.value.split("-").reverse().join("-");      //"2021-01-17" --> 17-01-2021
Posted by: Guest on January-17-2021

Code answers related to "typescript convert string to date format yyyy-mm-dd"

Browse Popular Code Answers by Language