JavaScript | date.toString() function
The date.toString() is an inbuilt function in JavaScript which is used to convert the given date object’s contents into a string.The date object is created using date() constructor.
Syntax:
dateObj.toString()
Note: In the above syntax, DateObj is a valid Date object created using Date() conctructor whose contents are converted into string.
- This function does not takes any parameter. It is just used along with a Date object created using Date() conctructor whose contents are converted into string.
- It returns the converted string.
Parameters:
Return Values:
Below program illustrate the date.toString() 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 toString() function. var B = dateobj.toString(); // Printing the converted string. document.write(B); </script> |
Output:
> "Tue Oct 15 1996 05:35:32 GMT+0530 (India Standard Time)"
- Here nothing as a parameter is passed while creating date object but still toString() function return current day name, month name, date, year and time.
<script>// Here nothing has been assigned// while creating Date objectvardateobj =newDate();// Contents of above date object// is converted into a string// using toString() function.varB = dateobj.toString();// Printing the converted string.document.write(B);</script>chevron_rightfilter_noneOutput:
> "Wed Apr 11 2018 00:50:44 GMT+0530 (India Standard Time)"
- When some random list of values is passed then toString() 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 toString() function.varB = dateobj1.toString();varC = dateobj2.toString();varD = dateobj3.toString();varE = dateobj4.toString();varF = dateobj5.toString();varG = dateobj6.toString();// 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 +"<br>");</script>chevron_rightfilter_noneOutput:
> "Mon Jan 01 2001 00:00:00 GMT+0530 (India Standard Time)" > "Sat Feb 03 2001 00:00:00 GMT+0530 (India Standard Time)" > "Wed Apr 05 2006 00:00:00 GMT+0530 (India Standard Time)" > "Invalid Date" > "Wed Apr 05 2006 11:00:12 GMT+0530 (India Standard Time)" > "Sun Dec 05 2004 00:00:00 GMT+0530 (India Standard Time)"
Exceptional cases associated with this function
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Parameters
- JavaScript | Function Definitions
- JavaScript | toString( ) function
- JavaScript | Math.pow( ) Function
- JavaScript | Array every() function
- JavaScript | String() Function
- JavaScript | Function Apply
- JavaScript | Function Call
- Javascript | Number() Function
- JavaScript | Math.E() function
- JavaScript | Array some() function
- JavaScript | toFixed( ) Function
- JavaScript | Array.of() function
- JavaScript | Math.abs( ) 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.



