2013년 4월 23일 화요일

[ Jsp ][ Javascript ][ 날짜 ] 특정 년 월 말일 구하기


특정 년 월의 말일 날짜 구하기


function getMonthEndDate(year, month) {
    var dt = new Date(year, month, 0);
    return dt.getDate();
}

댓글 없음:

댓글 쓰기