JavaScript toTimeString function returns the Time portion of a given date in a human-readable format. The syntax of the JavaScript toTimeString Date function is:
Date.toTimeString()
JavaScript toTimeString Function Example
We use the toTimeString function to return the time portion of today’s date and time.
<!DOCTYPE html> <html> <head> <title> JavaScript toTimeString Function </title> </head> <body> <h1> JavaScript toTimeString Example </h1> <script> var dt = Date(); document.write("Date and Time : " + dt + "<br/>"); var x = dt.toTimeString(); document.write("After toTimeString() = " + x); </script> </body> </html>
OUTPUT
JavaScript to Time String Function Example 2
This JavaScript toTimeString example returns the string time of a custom date and time in a human-readable format.
<!DOCTYPE html> <html> <head> <title> JavaScript toTimeString Function </title> </head> <body> <h1> JavaScript toTimeString Example </h1> <script> var dt = Date(1947, 7, 15, 22, 15, 11); document.write("Date and Time : " + dt + "<br/>"); var x = dt.toTimeString(); document.write("After toTimeString() = " + x); </script> </body> </html>
OUTPUT