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

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


날짜는 자바스크립트에서 쉽게 비교할 수 있습니다. 날짜는 과거, 현재 및 미래의 모든 프레임에 속할 수 있습니다. 과거 날짜는 미래 날짜와 비교할 수 있고 미래 날짜는 현재와 비교할 수 있습니다.

예시-1

다음 예에서는 2000년의 날짜를 오늘 날짜와 비교하고 해당 메시지가 출력에 표시됩니다.

<html>
<body>
   <p id="compare"></p>
<script>
   var today = new Date();
   var otherday = new Date();
   otherday.setFullYear(2000, 2, 14);
   if (otherday > today) {
      var msg = "The date you provided is a future date ";
   } else {
       var msg = "The date you provided is a past date";
   }
   document.getElementById("compare").innerHTML = msg;
</script>
</body>
</html>

출력

The date you provided is a past date

예시-2

다음 예에서는 2900년의 날짜를 오늘 날짜와 비교하고 해당 메시지가 출력에 표시됩니다.

<html>
<body>
   <p id="compare"> </p>
<script>
   var today = new Date();
   var otherday = new Date();
   otherday.setFullYear(2900, 2, 14);
   if (otherday > today) {
      var msg = "The date you provided is a future date ";
   } else {
       var msg = "The date you provided is a past date";
   }
   document.getElementById("compare").innerHTML = msg;
</script>
</body>
</html>

출력

The date you provided is a future date