Copyright © tutorialspoint.com
This method converts a date to a string, using the universal time convention.
Date.toUTCString() |
Here is the detail of parameters:
NA
Returns converted date to a string, using the universal time convention.
<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> |
This will produce following result:
Wed, 28 Jul 1993 09:09:07 UTC |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com