Tanggal klon JavaScript

var date = new Date();
var clonedDate = new Date(date.getTime()); //clone the date
Grepper