This question answers how to convert HH:mm:ss
string into a Javascript date object. The string returned from HTML time input is not always in the HH:mm:ss
format. The format varies.
The answers in the linked question will not work in-case of dynamic formats.
How to create a Javascript date object from this input value which does not have a fixed format?
This question answers how to convert HH:mm:ss
string into a Javascript date object. The string returned from HTML time input is not always in the HH:mm:ss
format. The format varies.
The answers in the linked question will not work in-case of dynamic formats.
How to create a Javascript date object from this input value which does not have a fixed format?
Share Improve this question edited May 21, 2019 at 3:47 Yuvaraj V asked May 21, 2019 at 3:22 Yuvaraj VYuvaraj V 1,2323 gold badges19 silver badges28 bronze badges 3- Possible duplicate of How to convert a HH:mm:ss string to to a Javascript Date object? and Converting time string into Date object and Javascript Date Object from string in form 'HH-MM' – adiga Commented May 21, 2019 at 3:27
- possible duplicate of how-to-convert-html5-input-type-date-and-time-to-javascript-datetime – AsukaSong Commented May 21, 2019 at 3:28
- 1 @adiga The answers in the linked question will not work in-case of dynamic formats. – Yuvaraj V Commented May 21, 2019 at 3:49
3 Answers
Reset to default 13This is an optimised version of benihamalu's answer.
const today = new Date();
console.log(new Date(today.toDateString() + ' ' + "13:30"));
I assume you want current date, in that case you need to get the current date and then pass the current time.
var today = new Date();
var dd = String(today.getDate()).padStart(2, '0');
var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0!
var yyyy = today.getFullYear();
today = mm + '/' + dd + '/' + yyyy;
console.log(new Date(today + " " + "13:30" /*pass your time*/));
simple answer
function TimeToDate(time) {
var today = new Date();
time = new Date('1970-01-01' + ' ' + time + 'Z').getTime();
var date = today.setHours(0, 0, 0, 0);
var DateTime = new Date(date + time);
return DateTime;
}
console.log(TimeToDate("13:30:7.026"));