javascript Date toLocaleTimeString( )

IE 6 for Windows returns a value in the format [h]h:mm:ss xM; Netscape 6 returns hh:mm:ss

javascript Date toLocaleString( )

Returns a string version of the local time zone value of both the date and time from a Date object instance. The format may be localized for a par

javascript Date toLocaleDateString( )

Returns a string consisting only of the date portion of an instance of a Date object. IE 6 for Windows returns a value in the format fullDay, fullMont

javascript Date toGMTString( )

Returns a string version of the GMT value of a Date object instance in a standardized format. This method does not alter the original Date obje

javascript Date toDateString( )

Returns a string consisting only of the date portion of an instance of a Date object. U.S. English versions of both IE 6 for Windows and Netscape 6 re

javascript Date setYear( )

Sets the year of an instance of a Date object. Use setFullYear( ) if the browser versions you support allow it. Note that this method is not an

javascript Date setUTCSeconds( )

Sets the seconds value past the nearest full for an instance of the Date object but in the UTC time stored internally by the browser.

javascript Date setUTCMonth( )

Sets the month value for an instance of the Date object but in the UTC time stored internally by the browser. That this method's values are zero-b

javascript Date setUTCMinutes( )

Sets the minute value for the hour and date of an instance of the Date object but in the UTC time stored internally by the browser.

javascript Date setUTCMilliseconds( )

Sets the number of milliseconds past the seconds value of an instance of the Date object but in the UTC time stored internally by the browser.

javascript Date setUTCHours( )

Sets the hours of the day for an instance of the Date object but in the UTC time stored internally by the browser. The 24-hour time system is used

javascript Date setUTCFullYear( )

Sets all digits of the year for an instance of the Date object but in the UTC time stored internally by the browser.

javascript Date setUTCDate( )

Sets the date within the month of an instance of the Date object but in the UTC time stored internally by the browser. If you specify a date beyon

javascript Date setTime( )

Sets an instance of the Date object to the number of milliseconds since January 1, 1970.

javascript Date setSeconds( )

Sets the seconds value past the nearest full minute for an instance of the Date object.