Format a Date as a string that contains the date and time portions in a long format e.g. Thursday, 2 January 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 in a long format e.g. Thursday, 2 January 2020 5:31 pmExample