toLocaleDateString()
displays the date's day of the week, month,
day of the month, and year.
toLocaleDateString() |
Yes | Yes | Yes | Yes | Yes |
dateObject.toLocaleDateString();
A string representing the date as a string.
var aDate = new Date(Date.UTC(2021, 5, 4, 12, 21, 55));
console.log(aDate.toLocaleDateString());
The code above generates the following result.