Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 이 날짜에서 일주일을 어떻게 빼나요?

<시간/>

현재 날짜에서 1주일, 즉 7일을 빼야 합니다. 다음은 구문입니다 -

var anyVariableName=new Date(yourCurrentDate.setDate(yourCurrentDate.getDate() - 7)

처음에는 현재 날짜를 가져옵니다 -

var currentDate = new Date();
console.log("The current Date="+currentDate);

이제 setDate() 메서드로 새 날짜를 설정하고 7일을 뺍니다 -

예시

var currentDate = new Date();
console.log("The current Date="+currentDate);
var before7Daysdate=new Date(currentDate.setDate(currentDate.getDate() - 7));
console.log("The One week ago date="+before7Daysdate);

위의 프로그램을 실행하려면 다음 명령을 사용해야 합니다 -

node fileName.js.

여기에서 내 파일 이름은 demo60.js입니다.

출력

이것은 다음과 같은 출력을 생성합니다 -

PS C:\Users\Amit\JavaScript-code> node demo60.js
The current Date=Tue Jul 14 2020 19:12:43 GMT+0530 (India Standard Time)
The One week ago date=Tue Jul 07 2020 19:12:43 GMT+0530 (India Standard Time)