Convert seconds to Hour:Minute:Second

前端 未结 27 2445
说谎
说谎 2020-11-22 07:56

I need to convert seconds to \"Hour:Minute:Second\".

For example: \"685\" converted to \"00:11:25\"

How can I achieve this?

27条回答
  •  遥遥无期
    2020-11-22 08:29

    If you need to do that in javascript, you can do it in just one line of code as answered here Convert seconds to HH-MM-SS with JavaScript. Replace SECONDS with what you want to convert.

    var time = new Date(SECONDS * 1000).toISOString().substr(11, 8);
    

提交回复
热议问题