본문 바로가기

Programming/javascript

[javascript] 해당 년월에 마지막 날짜 구하기

해당 년월에 마지막 날짜 구하기



function lastDay(year, month){

//var curDate = new Date();

var lastDate = new Date(year, month, "");

return lastDate.getDate();

}