해당 년월에 마지막 날짜 구하기
function lastDay(year, month){
//var curDate = new Date();
var lastDate = new Date(year, month, "");
return lastDate.getDate();
}
'Programming > javascript' 카테고리의 다른 글
[javascript] 간단한 문자열 비교 (0) | 2014.09.15 |
---|---|
[javascript] 이메일 형식 체크 (0) | 2014.09.15 |
[javascript] javascript 정규표현식 (0) | 2014.09.02 |
[javascript] .prototype과 .constructor (0) | 2014.09.02 |
[javascript] apply() & call() (0) | 2014.09.02 |