I have the following code, but currently experiencing format has no method. It is completely working off another site because i used the exact same code for reference. Now i am unsure why it didnt work for my site when i copied it over.. Can anyone help me out?>
var TodayDate = new Date();
TodayDate.setDate(TodayDate.getDate());
var PastDate = new Date();
PastDate.setDate(PastDate.getDate() - 30);
StoreHeavyTraffic = 0;
StoreRoadWork = 0;
StoreVehicleBreakdown = 0;
StoreAccident = 0;
StoreObstacle = 0;
var PD = Date.parse(PastDate.format("d MMM yyyy"));
var TD = Date.parse(TodayDate.format("d MMM yyyy"));