javascript Date valueOf( )

javascript Date UTC( )

This is a static method of the Date object that returns a numeric version of the date as stored internally by the browser for a Date object. Unl

javascript Date toUTCString( )

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

javascript Date toTimeString( )

Returns a string consisting only of the time portion of an instance of a Date object. The precise format is under the control of the browser and langu

javascript Date toString( )

This is a method used mostly by the browser itself to obtain a string version of an instance of a Date object when needed for display in dialog bo

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.