JavaScript | date.toUTCString() function
The date.toUTCString() is an inbuilt function in JavaScript which is used to convert the given date object’s contents into a string according to universal time zone UTC.The date object is created using date() constructor.
Syntax:
dateObj.toUTCString()
Note: In the above syntax, DateObj is a valid Date object created using Date() conctructor whose contents are converted into string.
Parameters: This function does not take any parameter. It is just used along with a Date object created using Date() constructor whose contents are converted into a string.
Return Values: It returns the converted string according to universal time zone UTC.
Below program illustrate the date.toUTCString() function:-
<script> // Here a date has been assigned // while creating Date object var dateobj = new Date('October 15, 1996 05:35:32'); // Contents of above date object is converted // into a string using toUTCString() function. var B = dateobj.toUTCString(); // Printing the converted string. document.write(B); </script> |
Output:
Tue, 15 Oct 1996 00:05:32 GMT
- Here nothing as a parameter is passed while creating date object but still toUTCString() function return current day name, month name, date, year and time according to universal time zone UTC.
<script>// Here nothing has been assigned// while creating Date objectvardateobj =newDate();// Contents of above date object// is converted into a string// using toUTCString() function.varB = dateobj.toUTCString();// Printing the converted string.document.write(B);</script>chevron_rightfilter_noneOutput:
Wed, 18 Apr 2018 08:30:48 GMT
- When some random list of values is passed then toUTCString() function return the corresponding produced string.
The format for Date() constructor is like Date(month, date, year, time). By following this format some values are given in the below program and corresponding string is produced as output. Time format should be like (number:number: number) If time does not lie in this format, it gives output as an Invalid date.<script>// Here some different values has been// assigned while creating Date objectvardateobj1 =newDate('1');vardateobj2 =newDate('2, 3');vardateobj3 =newDate('4, 5, 6');vardateobj4 =newDate('7, 8, 3, 4');vardateobj5 =newDate('4, 5, 6, 11:00:12');vardateobj6 =newDate('12, 5, 4, 0:0');// Contents of above date objects is converted// into strings using toUTCString() function.varB = dateobj1.toUTCString();varC = dateobj2.toUTCString();varD = dateobj3.toUTCString();varE = dateobj4.toUTCString();varF = dateobj5.toUTCString();varG = dateobj6.toUTCString();// Printing the converted string.document.write(B +"<br>");document.write(C +"<br>");document.write(D +"<br>");document.write(E +"<br>");document.write(F +"<br>");document.write(G);</script>chevron_rightfilter_noneOutput:
Sun, 31 Dec 2000 18:30:00 GMT Fri, 02 Feb 2001 18:30:00 GMT Tue, 04 Apr 2006 18:30:00 GMT Invalid Date Wed, 05 Apr 2006 05:30:12 GMT Sat, 04 Dec 2004 18:30:00 GMT
Exceptional cases associated within this function:
Supported Browsers: The browsers supported by JavaScript date.toUTCString() Function are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Definitions
- JavaScript | Function Parameters
- JavaScript | toExponential() Function
- How to override a JavaScript function ?
- JavaScript | Function binding
- JavaScript | Math.abs( ) function
- JavaScript | toFixed( ) Function
- JavaScript | String() Function
- JavaScript | Function Call
- JavaScript | Function Apply
- JavaScript | Array some() function
- JavaScript | Array.of() function
- Javascript | Number() Function
- JavaScript | Array every() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


