date adjustment

This commit is contained in:
NoobishSVK
2024-07-21 22:03:27 +02:00
parent 392d32c1d2
commit f4a8e7c298
+1 -1
View File
@@ -1,4 +1,4 @@
var currentDate = new Date('Jul 18, 2024 15:00:00');
var currentDate = new Date('Jul 21, 2024 22:00:00');
var day = currentDate.getDate();
var month = currentDate.getMonth() + 1; // Months are zero-indexed, so add 1
var year = currentDate.getFullYear();