जावास्क्रिप्ट के साथ दो तिथियों की तुलना करने के लिए, दो तिथियां ऑब्जेक्ट बनाएं और हाल की तिथि प्राप्त करें। आप दो तिथियों की तुलना करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं।
उदाहरण
<!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.