new Date() 객체가 현재 날짜의 JavaScript 날짜를 반환하는 JavaScript의 Date 클래스를 사용하여 다음 이틀의 날짜를 찾아야 합니다.
이것은 상당히 간단한 문제이며 몇 줄의 코드로 이를 달성할 수 있습니다. 먼저 오늘 날짜를 가져옵니다 -
// getting today's date const today = new Date();
이 함수의 코드를 작성해 봅시다 -
// getting today's date const today = new Date(); // initializing tomorrow with today's date const tomorrow = new Date(today); // increasing a day in tomorrow and setting it to tomorrow tomorrow.setDate(tomorrow.getDate() + 1); const dayAfterTomorrow = new Date(today); dayAfterTomorrow.setDate(dayAfterTomorrow.getDate() + 2); console.log(today); console.log(tomorrow); console.log(dayAfterTomorrow);
출력
다음은 콘솔의 출력입니다 -
2020-08-13T17:13:26.401Z 2020-08-14T17:13:26.401Z 2020-08-15T17:13:26.401Z