Core JavaScript 1.5 Reference:Global Objects:Date:getHours
From MDC
(Redirected from Core JavaScript 1.5 Reference:Objects:Date:getHours)
Contents |
[edit] Summary
Returns the hour for the specified date according to local time.
| Method of Date | |
| Implemented in: | JavaScript 1.0, NES 2.0 |
| ECMA Version: | ECMA-262 |
[edit] Syntax
getHours()
[edit] Parameters
None.
[edit] Description
The value returned by getHours is an integer between 0 and 23.
[edit] Examples
[edit] Example: Using getHours
The second statement below assigns the value 23 to the variable hours, based on the value of the Date object Xmas95.
Xmas95 = new Date("December 25, 1995 23:15:00")
hours = Xmas95.getHours()