The toString() method returns the date and time with time-zone information.
toString() |
Yes | Yes | Yes | Yes | Yes |
dateObject.toString();
None;
A string representing the date and time as a string.
var aDate = new Date(Date.UTC(2000, 0));
console.log(aDate);
console.log(aDate.toString())
The code above generates the following result.