Core function | |
Implemented in | Navigator 4.0, Netscape Server 3.0 |
String(obj)
obj | An object. |
Date
object, String
returns a string representation of the date. Its format is: Thu Aug 18 04:37:43 Pacific Daylight Time 1983. 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>
String
Last Updated: 10/31/97 16:38:00