JavaScript | date.getHours() Function
The date.getHours() is an inbuilt function in JavaScript which is used to return the hours from a given Date object.
Syntax:
DateObject.getHours()
In the above syntax the DateObject is a valid Date object.
Parameter: This function does not takes any parameter. It is just used along with a Date Object from which we want to fetch Hours.
Return values: It returns the Hours for the given Date object. Hours is an integer value ranging from 0 to 23.
Below program illustrate the getHours() function:
- Example 1:
<script>// Here a date has been assigned// while creating Date objectvarA =newDate('October 15, 1996 05:35:32');// hour from above is being// extracted using getHours()varB = A.getHours();// Printing hour.document.write(B);</script>chevron_rightfilter_noneOutput:
5
Errors and Exceptions:
- Example 1: Here the date of the month must lie in between 1 to 31 because no date can have month greater than 31. That is why it returns NaN i.e, Not a Number if the month in the Date object is greater than 31. Hours will not have existed when date of the month given as 33 i.e, greater than 31.
<script>// Creating a Date objectvarA =newDate('October 35, 1996 12:35:32');varB = A.getHours();// Printing hour.document.write(B);</script>chevron_rightfilter_noneOutput:
NaN
- example 2: If hours is not given, it returns zero (0). It is an exception case.
<script>// Creating a Date objectvarA =newDate('October 12, 1996');// extracting hours from the date objectvarB = A.getHours();// Printing hour.document.write(B);</script>chevron_rightfilter_noneOutput:
0
- Example 3: If nothing as parameter is given, it returns present hours.
<script>// Creating a Date objectvarA =newDate();varB = A.getHours();// Printing present hour.document.write(B);</script>chevron_rightfilter_noneOutput:
15
Application: It has many applications such as getting current hour. Below program shows one of the application of this function. It gives the current Hour.
- Example 1:
<script>// Creating a Date objectvarA =newDate();// Getting present HourvarB = A.getHours();// Printing present hour.document.write(B);</script>chevron_rightfilter_noneOutput:
15
Supported Browsers: The browsers supported by JavaScript date.getHours() Function are listed below:
- Google Chrome
- Internet Explorer
- Firefix
- Opera
- Safari
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Invocation
- JavaScript | String() Function
- JavaScript | Symbol.for() function
- JavaScript | Math.E() function
- JavaScript | toString( ) function
- JavaScript | Array every() function
- JavaScript | Array.of() function
- JavaScript | Function binding
- JavaScript | toPrecision( ) Function
- JavaScript | Array some() function
- What is the inline function in JavaScript ?
- Javascript | Number() Function
- JavaScript | Function Apply
- JavaScript | Function Definitions
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Akanksha_Rai


