Hi
I have an input box that is type "Time".
How can I set the default value or local time on app start up?
Must I use:
var d = new Date();
var t = d.getTime();
Hi
I have an input box that is type "Time".
How can I set the default value or local time on app start up?
Must I use:
var d = new Date();
var t = d.getTime();
Hello!
Use dateObj.toTimeString(): method. Here is more information https://developer.mozilla.org/en-US/d...
Thank you