ในการโคลนวัตถุ Date ใน JavaScript คุณสามารถลองเรียกใช้โค้ดต่อไปนี้ เราได้โคลนวันที่ปัจจุบัน:
ตัวอย่าง
<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>
ผลลัพธ์
Mon May 28 2018 09:27:54 GMT+0530 (India Standard Time) Mon May 28 2018 09:27:54 GMT+0530 (India Standard Time)