Date.getHours()
Returns the hour (from 0-23)
The getHours() method returns the hour for the specified date, according to local time.
Syntax
Return value
An integer number, between 0 and 23, representing the hour for the given date according to local time.
Description
The value returned by getFullYear()
is an absolute number. For dates between the years 1000 and 9999, getFullYear()
returns a four-digit number, for example, 1995. Use this function to make sure a year is compliant with years after 2000.
Examples
Using getHours()
getHours()
The second statement below assigns the value 23 to the variable hours
, based on the value of the Date
object Xmas95
.
References
Contributors to this page
Uros Durdevic
Last updated