Date type's toLocaleString()
returns the date and time in a locale format.
toLocaleString() |
Yes | Yes | Yes | Yes | Yes |
dateObject.toLocaleString();
A string representing the date and time as a string.
var aDate = new Date(Date.UTC(2000, 0));
console.log(aDate);
console.log(aDate.toLocaleString());
The code above generates the following result.