我需要将返回时间设置从几小时更改为几天。 我试图延长工作时间,但我不断出错。
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`;
我只是不断出错。
答案 0 :(得分:1)
将小时转换为几天非常简单-您只需将其除以24并取整:
var days = Math.floor(hours / 24);
希望这会有所帮助!