2011년 6월 30일 목요일

[JavaScript] Date to String

function convertDateToYear(date){
    return date.getFullYear();
}

function convertDateToMonth(date){
    return date.getMonth() + 1;
}

function convertDateToDay(date){
    return date.getDate();
}

댓글 없음:

댓글 쓰기