Date getHours() Method - Javascript Date

Javascript examples for Date:getHours

Description

The getHours() method returns the hour from 0 to 23.

Parameters

None

Return Value:

A Number, from 0 to 23, representing the hour

The following code shows how to return the hour, according to local time:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {//from w ww.  j a  v a  2s.co  m
    var d = new Date("July 21, 2020 01:15:00");
    var n = d.getHours();
    document.getElementById("demo").innerHTML = n;
}
</script>

</body>
</html>

Related Tutorials