본문으로 바로가기

 

자바스크립트 Date 객체에 protytype을 통해 시간/ 날짜 더하기 구현하기

 

시간 더하기

Date.prototype.addHours= function(h){
    //h는 시간
    this.setHours(this.getHours()+h);
    return this;
}

 

날짜 더하기

Date.prototype.addDays = function(days) {
    //day는 추가할 일자
    this.setDate(this.getDate() + days);
    return this;
};

♡⁺◟(●˙▾˙●)◞⁺♡ !