Jak mogę przetłumaczyć ten pseudo kod na działający js [nie martw się, skąd pochodzi data końcowa, z wyjątkiem tego, że jest to poprawna data javascript].
var myEndDateTime = somedate; //somedate is a valid js date
var durationInMinutes = 100; //this can be any number of minutes from 1-7200 (5 days)
//this is the calculation I don't know how to do
var myStartDate = somedate - durationInMuntes;
alert("The event will start on " + myStartDate.toDateString() + " at " + myStartDate.toTimeString());
.getTime(). Przykład:var myStartDate = new Date(myEndDateTime.getTime() + durationInMinutes * MS_PER_MINUTE);