Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để lấy ngày đầu tiên và ngày cuối cùng của tháng hiện tại bằng JavaScript?

Để lấy ngày đầu tiên và ngày cuối cùng của tháng hiện tại bằng JavaScript, bạn có thể thử chạy mã sau -

<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>