Date Formatter
DD/MM/YYYY: 01/06/2026
Day, Month, Year: 1 June 2026
Weekday, Day Month Year: Monday, 1 June 2026
// DD/MM/YYYY
date.toLocaleDateString('en-GB')
// Day, Month, Year
date.toLocaleDateString('en-GB', {
year: 'numeric', month: 'long', day: 'numeric',
})
// Weekday, Day Month Year
date.toLocaleDateString('en-GB', {
weekday: 'long', year: 'numeric',
month: 'long', day: 'numeric',
})