YYYY-MM-DD 변환


1
2
3
4
5
6
7
8
//date객체 YYYY-MM-DD 변환함수
function dateToYYYYMMDD(date){
    function pad(num) {
        num = num + '';
        return num.length < 2 ? '0' + num : num;
    }
    return date.getFullYear() + '-' + pad(date.getMonth()+1+ '-' + pad(date.getDate());
}
cs


+ Recent posts