I have two <input type="time">
. By default, each input collects a time value as a string. For example, "08:30"
.
How can I convert this string into an object which would then enable computation? Is it possible to avoid involving the use of date
in this approach?
In the end, I would like to compute the difference between two time
strings and then return the result in minutes. For example, the expected return value of08:00
and 09:00
would be 60
minutes.