Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
487 views
in Technique[技术] by (71.8m points)

javascript - Converting integer to HH:MM:SS

I'm trying to merge two separate integers and convert into a 24 hour format hh:mm:ss. Below is my code:

    var hr = 5;
    var min = 30;
    /**convert to hh:mm:ss*****/
    var combine_time = new Date(hr + ":" + min + ":" + "00");
    
    alert(combine_arrive);

However, my javascript show it as invalid date. Can anyone guide me? Thank you

question from:https://stackoverflow.com/questions/65860186/converting-integer-to-hhmmss

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Perhaps you meant this?

We cannot know if 5 is 5am (05) or pm (17) unless you tell us

const arrive_hr = 5;
const arrive_min = 30;

const pad = num => ("0"+num).slice(-2);
const combine_time = `${pad(arrive_hr)}:${pad(arrive_min)}:00`;
console.log(combine_time)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...