24.24. Date.getDate( ): return the day-of-the-month field of a DateECMAScript v124.24.1. Synopsisdate . geTDate( ) 24.24.1.1. ReturnsThe day of the month of the specified Date object date , using local time. Return values are between 1 and 31. |
24.25. Date.getDay( ): return the day-of-the-week field of a DateECMAScript v124.25.1. Synopsisdate . geTDay( ) 24.25.1.1. ReturnsThe day of the week of the specified Date object date , using local time. Return values are between 0 (Sunday) and 6 (Saturday). |
24.26. Date.getFullYear( ): return the year field of a DateECMAScript v124.26.1. Synopsisdate . getFullYear( ) 24.26.1.1. Returns
The year that results when
date
is
|
24.27. Date.getHours( ): return the hours field of a DateECMAScript v124.27.1. Synopsisdate . getHours( ) 24.27.1.1. Returns
The hours field,
|
24.28. Date.getMilliseconds( ): return the
|
24.29. Date.getMinutes( ): return the minutes field of a DateECMAScript v124.29.1. Synopsisdate . getMinutes( ) 24.29.1.1. Returns
The minutes field,
|
24.30. Date.getMonth( ): return the month field of a DateECMAScript v124.30.1. Synopsisdate . getMonth( ) 24.30.1.1. Returns
The month field,
|
24.31. Date.getSeconds( ): return the seconds field of a DateECMAScript v124.31.1. Synopsisdate . getSeconds( ) 24.31.1.1. Returns
The seconds field,
|
24.32. Date.getTime( ): return a Date in
|
24.33. Date.getTimezoneOffset( ): determine the offset from GMTECMAScript v124.33.1. Synopsisdate . getTimezoneOffset( ) 24.33.1.1. ReturnsThe difference, in minutes, between GMT and local time. 24.33.2. Description
getTimezoneOffset( )
returns the number of minutes difference between the GMT or UTC time and the local time. In effect, this function
The return value is measured in minutes, rather than hours, because some
|