https://stackoverflow.com/a/40460346/417899
import { DatePipe } from '@angular/common'; ... constructor(public datepipe: DatePipe){} ... convertDate(){ this.date = new Date(); let latest_date = this.datepipe.transform(this.date, 'yyyy-MM-dd'); }