본문 바로가기
컴퓨터/Front

[JavaScript] 오늘 날짜 + 현재 시간 출력하기_new Date()

by 버니케이 2022. 10. 30.
반응형

 

 

 

코드

/**
 * 오늘 날짜 + 시간 출력하는 함수
 * dateFormat: 날짜 포매팅 기호 (/,-,. 같은거)
 * timeFormat: 시간 포매팅 기호 (/,-,. 같은거)
*/
function GetCurDayTime(dateFormat,timeFormat) {
    return this.TimeString(dateFormat,timeFormat,new Date());
}

function TimeString (dateFormat='/',timeFormat=':',date) {
        
    let year = date.getFullYear();
    let month = date.getMonth() + 1; // 1월=0,12월=11이므로 1 더함
    let day = date.getDate();
    let hour = date.getHours();
    let min = date.getMinutes();

    if (("" + month).length == 1) {
        month = "0" + month;
    }
    if (("" + day).length == 1) {
        day = "0" + day;
    }
    if (("" + hour).length == 1) {
        hour = "0" + hour;
    }
    if (("" + min).length == 1) {
        min = "0" + min;
    }

    return ("" + year+ dateFormat + month+ dateFormat + day+ " " + hour+ timeFormat + min)
}

 

 

 

 

 


사용방법

console.log(GetCurDayTime('/',':'));

결과

반응형

댓글