JavaScript: Get a string of the form HH:MM:SS from a Date object
JavaScript fundamental (ES6 Syntax): Exercise-221 with Solution
Time from Date Object
Write a JavaScript program to get a string like HH:MM:SS from a Date object.
- Use Date.prototype.toTimeString() and String.prototype.slice() to get the HH:MM:SS part of a given Date object.
Sample Solution:
JavaScript Code:
Output:
16:39:53
Flowchart:

Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript program that extracts hours, minutes, and seconds from a Date object and formats them as HH:MM:SS.
- Write a JavaScript function that converts a Date object into a time string using leading zeros for single-digit values.
- Write a JavaScript program that returns the current time in a formatted string based on a Date instance.
- Write a JavaScript function that displays the time from a Date object in 24-hour format with proper padding.
Go to:
PREV : Get Native Type of Value.
NEXT : Range Array with Ratio Step.
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.