Format a Date as a string that just contains the date portion e.g. 31/01/2020
Date
string
const date = new Date()const text = localisationService.formatDate(date)// Display text Copy
const date = new Date()const text = localisationService.formatDate(date)// Display text
Format a
Dateas astringthat just contains the date portion e.g. 31/01/2020Example