Core function |
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.
D = new Date (430054663215);
This prints "Thu Aug 18 04:37:43 Pacific Daylight Time 1983."
print (String(D)); See also
String
Last Updated: 10/31/97 16:38:00