Time: hour, minutes, and seconds. : Time « Development « JavaScript DHTML






Time: hour, minutes, and seconds.

/* To return the GMT time use getUTCHours, getUTCMinutes etc. */
<html>
<body>

<script type="text/javascript">
    var d = new Date()
    
    document.write(d.getHours())
    document.write(".")
    document.write(d.getMinutes())
    document.write(".")
    document.write(d.getSeconds())
</script>

</body>
</html>


           
       








Related examples in the same category

1.Formats the current hour and displays it in a static or dynamic way
2.Times Table
3.A Clock Script
4.Update Time per second
5.Display the Current Time in status bar
6.Creating a Clock Object and Displaying the Results on the Page
7.Morning or Evening
8.Time value
9.Get the current time and then extract the hours, minutes and seconds