skip to Main Content

javascript converting datestring to epoch returns three digits too much

I am converting a string to epoch like this: arrival = $('#aircraft_arrival_time').val(); console.log(arrival); //2023-12-09T14:03 temp = arrival.split("T"); arrivalDatePart = temp[0]; arrivalDate = arrivalDatePart + "T00:00:00.000Z"; console.log(arrivalDate); //2023-12-09T00:00:00.000Z chartFrom = Date.parse(arrivalDate); //beginning of that day, UTC console.log(chartFrom); //1702080000000 var f =…

VIEW QUESTION

Laravel change timezone – Apache

After changing app/config/app.php FROM: 'timezone' => 'UTC', which is the default TO: 'timezone' => 'Europe/Vilnius', and still getting wrong date output. Also I changed php.ini file [Date] date.timezone=Europe/Vilnius and restarted apache server, still getting wrong date output. Any idea how…

VIEW QUESTION
Back To Top
Search