জাভাস্ক্রিপ্টে বর্তমান মাসের প্রথম এবং শেষ তারিখ পেতে, আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন -
<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>