﻿// 해당 년월의 마지막 일자를 반환합니다.
Date.prototype.getLastDate = function(){
  return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate();
}
