박지환

Fix time set error

......@@ -32,12 +32,8 @@ app.use(static(__dirname));
// To get today date by using Date
function getTodayDate() {
var tempDate = new Date();
console.log("[tempDate] " + tempDate);
const utc = tempDate.getTime() + tempDate.getTimezoneOffset() * 60 * 1000;
const KR_TIME_DIFF = 9 * 60 * 60 * 1000;
const today = new Date(utc + KR_TIME_DIFF);
console.log("[today] " + today);
var today = new Date();
console.log(today);
var year = today.getFullYear();
var month = ("0" + (today.getMonth() + 1)).slice(-2);
var day = ("0" + today.getDate()).slice(-2);
......@@ -46,13 +42,6 @@ function getTodayDate() {
return dateString;
}
function test() {
var tempDate = new Date(); // Locale time
const utc = tempDate.getTime() + tempDate.getTimezoneOffset() * 60 * 1000; // Calculate UTC time
const KR_TIME_DIFF = 9 * 60 * 60 * 1000; // UTC to KST (UTC + 9 hours)
return utc + KR_TIME_DIFF;
}
// To get modified date from locdate
function getModifiedDate(locdate) {
return (
......@@ -214,11 +203,6 @@ app.get("/app", function (req, res) {
);
});
app.get("/test", function (req, res) {
init();
res.send(Date() + "<br>" + Date(test()) + "<br>" + test());
});
init();
const port = 8080;
......