|
|
toTimeString()Only time part of the Date object can be converted to string by using toTimeString
Date.toTimeString();
Here is sample code
<script type="text/javascript">
var dt= new Date();
document.write(dt + "<br><br>");
document.write(dt.toTimeString());
</script>
The output is here
| |
| | |
|
|
|
|
|