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

JavaScript로 두 날짜를 비교하는 방법은 무엇입니까?

<시간/>

JavaScript로 두 날짜를 비교하려면 두 개의 날짜 객체를 만들고 최근 날짜를 가져옵니다. 다음 코드를 실행하여 두 날짜를 비교할 수 있습니다.

예시

<!DOCTYPE html>
<html>
   <body>
      <script>
         var date1, date2;
         date1 = new Date();
         document.write(date1);
         date2 = new Date( "Dec 15, 2014 21:20:15" );
         document.write("<br>"+date2);
         if (date1 > date2) {
            document.write("<br>Date1 is the recent date.");
         } else {
            document.write("<br>Date 2 is the recent date.");
         }
      </script>
   </body>
</html>

출력

Sat Dec 15 2018 11:08:06 GMT+0530 (India Standard Time)
Mon Dec 15 2014 21:20:15 GMT+0530 (India Standard Time)
Date1 is the recent date.