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 "방금 전";
}
}
'JSP > Muzi' 카테고리의 다른 글
초마다 이미지 변경하기 (0) | 2023.10.06 |
---|---|
일정 시간마다 이미지 변경하기(setTimeout ,setInterval ) (0) | 2023.10.06 |
읽기 전용으로 바꾸기disabled,readonly (0) | 2023.08.01 |
시험 및 요약 (0) | 2023.07.17 |
JSP 정규식 패턴 비밀번호(validation) (0) | 2023.07.15 |