JavaScript에서 Date 개체를 복제하려면 다음 코드를 실행해 보십시오. 여기에서 현재 날짜를 복제했습니다.
예시
<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)