Format a Date as a string that contains the date and time portions e.g. 31/01/2020 5:31 pm
Date
string
const date = new Date()const text = localisationService.formatDatetime(date)// Display text Copy
const date = new Date()const text = localisationService.formatDatetime(date)// Display text
Format a
Dateas astringthat contains the date and time portions e.g. 31/01/2020 5:31 pmExample