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

Làm thế nào để sao chép một đối tượng Date trong JavaScript?


Để sao chép đối tượng Ngày trong JavaScript, bạn có thể thử chạy đoạn mã sau. Ở đây, chúng tôi đã sao chép ngày hiện tại:

Ví dụ

<html>
   <head>
      <title>JavaScript Clone Date</title>
   </head>
   <body>
      <script>
         var current_date, clonedDate;
         current_date = new Date();
         document.write(current_date);
         var clonedDate = new Date(current_date.getTime());
         document.write("<br>"+clonedDate);
      </script>
   </body>
</html>

Đầu ra

Mon May 28 2018 09:27:54 GMT+0530 (India Standard Time)
Mon May 28 2018 09:27:54 GMT+0530 (India Standard Time)