| Core function | |
| Implemented in | Navigator 4.0, Netscape Server 3.0 | 
| obj | An object. | 
 Description
When the object is a Date object, String returns a string representation of the date. Its format is: Thu Aug 18 04:37:43 Pacific Daylight Time 1983. 
 Example
The following example converts the Date object to a readable string. 
<SCRIPT>
This prints "Thu Aug 18 04:37:43 Pacific Daylight Time 1983." 
D = new Date (430054663215); 
document.write (String(D) +" <BR>");
</SCRIPT> See also
String
Last Updated: 10/31/97 16:38:00