getHours() to read hour from data and time
We can get hour part of the date object by using getHours function in JavaScript, Here is an example.
var dt= new Date();
document.write(dt.getHours());
Here is the output based on your time zone and date and time of your ( client ) computer
We can also take hours part from any date variable.
var dt= new Date("Aug 15, 2013 13:52:45");
document.write(dt.getHours());
Output is here
Getting Minutes part from date object →
← Date Reference
← Subscribe to our YouTube Channel here
This article is written by plus2net.com team.
plus2net.com