जावास्क्रिप्ट में चालू माह की पहली और अंतिम तिथि प्राप्त करने के लिए, आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<html> <head> <title>JavaScript Dates</title> </head> <body> <script> var date = new Date(); document.write("Current Date: " + date ); var firstDay = new Date(date.getFullYear(), date.getMonth(), 1); document.write("<br>"+firstDay); var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0); document.write("<br>"+lastDay); </script> </body> </html>