Returns the localized name of a day of the week for a given locale and format.
The locale to use for formatting the day name.
The day of the week (0 for Sunday, 1 for Monday, etc.).
Optional
The format to use for the day name.
The localized name of the day.
console.log(getDayName('en', 0)); // 'Sunday'console.log(getDayName('fr', 1, 'short')); // 'lun.' Copy
console.log(getDayName('en', 0)); // 'Sunday'console.log(getDayName('fr', 1, 'short')); // 'lun.'
Returns the localized name of a day of the week for a given locale and format.