This method converts a date to a string, using the universal time convention.
Its syntax is as follows −
Date.toTimeString ()
Returns converted date to a string, using the universal time convention.
Try the following example.
<html> <head> <title>JavaScript toUTCString Method</title> </head> <body> <script type="text/javascript"> var dateobject = new Date(1993, 6, 28, 14, 39, 7); document.write( dateobject.toUTCString() ); </script> </body> </html>
Wed, 28 Jul 1993 09:09:07 GMT