JavaScript Basics
JavaScript Objects
JavaScript Advanced
JS Useful References
JS Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Javascript Date - toUTCString Method
Description:
This method converts a date to a string, using the universal time convention.
Syntax:
Here is the detail of parameters:
Return Value:
Returns converted date to a string, using the universal time convention.
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>
|
This will produce following result:
Wed, 28 Jul 1993 09:09:07 UTC
|
To understand it in better way you can Try it yourself.
|
|
|