我如何将我的正常运行时间命令的格式更改为当前时间,我想将其更改为几天

时间:2018-12-22 19:18:12

标签: javascript html math

我需要将返回时间设置从几小时更改为几天。 我试图延长工作时间,但我不断出错。

let totalSeconds = (client.uptime / 1000);
let hours = Math.floor(totalSeconds / 3600);
totalSeconds %= 3600;
let minutes = Math.floor(totalSeconds / 60);
let seconds = totalSeconds % 60;
// Then you'll have hours, minutes and seconds ready to use.

let uptime = `${hours} hours, ${minutes} minutes and ${seconds} seconds`;

我只是不断出错。

1 个答案:

答案 0 :(得分:1)

将小时转换为几天非常简单-您只需将其除以24并取整:

var days = Math.floor(hours / 24);

希望这会有所帮助!