Format a Date as a string that just contains the date portion in a long format e.g. Thursday, 2 January 2020
Date
string
const date = new Date()const text = localisationService.formatDateLong(date)// Display text Copy
const date = new Date()const text = localisationService.formatDateLong(date)// Display text
Format a
Dateas astringthat just contains the date portion in a long format e.g. Thursday, 2 January 2020Example