2018년 3월 22일 목요일

자바스크립트 몇일 더한 날짜 가져오기 setDate new Date함수 이용

자바스크립트 몇일 더한 날짜 가져오기 setDate new Date함수 이용

함수 )

/*
   몇일 더한 날짜 가져오기
   @parmPM : 0(오늘), 1(내일)
   @return : 20180101
*/
function getPMDate( parmPM ){
var today = new Date();
//today.setDate(today.getDate() + 25); //25일 더하여 값을 보내줘요
today.setDate(today.getDate() + parmPM); //parmPM일 더하여 setting
var year = Number(today.getFullYear());
var month = Number(today.getMonth() + 1);
var day = Number(today.getDate());

var vl = String(year);
vl = vl + indexFnDigitTwoApply(month);
vl = vl + indexFnDigitTwoApply(day);

return vl;
}

즐거운 시간 보내세요~


댓글 1개:

  1. the titanium hammer - Titanium - TITanium Art
    In this post toaks titanium I will take titanium mountain bikes a look at this welding titanium TITanium babylisspro nano titanium hair dryer sculpture by Triton titanium trim hair cutter Art that features the head of the

    답글삭제