waktu menghitung titik tengah antara dua tanggal js

var midpoint = new Date((date1.getTime() + date2.getTime()) / 2);
Embarrassed Echidna