본문 바로가기
JSP/Muzi

등록일자 시간 나타내기

by 미눅스[멘토] 2023. 10. 4.
728x90

   // 등록일자 시간 나타내기
   function convertTimeToRelative(timeInMilliseconds) {
    const currentTime = new Date().getTime();
    const timeDifference = currentTime - timeInMilliseconds;

    const seconds = Math.floor(timeDifference / 1000);
    const minutes = Math.floor(seconds / 60);
    const hours = Math.floor(minutes / 60);
    const days = Math.floor(hours / 24);

       if (days > 0) {
           return days + "일 전";
       } else if (hours > 0) {
           return hours + "시간 전";
       } else if (minutes > 0) {
           return minutes + "분 전";
       } else {
           return "방금 전";
       }
   }