JavaScript秒转换成天-小时-分钟-秒

根据时间秒转换成天-小时-分钟-秒

// 秒转换成day、hour、minutes、seconds
  formatSecond(second: number) {
    const days = Math.floor(second / 86400);
    const hours = Math.floor((second % 86400) / 3600);
    const minutes = Math.floor(((second % 86400) % 3600) / 60);
    const seconds = Math.floor(((second % 86400) % 3600) % 60);
    const forMatDate = {
      days: days,
      hours: hours,
      minutes: minutes,
      seconds: seconds
    };
    return forMatDate;
  }

console.log(formatSecond(90)) // 0天0小时1分30秒

猜你喜欢

转载自www.cnblogs.com/yuanchao-blog/p/12367355.html
今日推荐