박종현

Update holiday counter

{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\app.js"
}
]
}
\ No newline at end of file
const today = new Date("2022-05-12"); //오늘 날짜 입력
const holiday = new Date("2022-10-01"); //공휴일 날짜 입력
const diffDate= today.getTime() - holiday.getTime();
const dday= Math.abs(diffDate / (1000 * 3600 * 24));
console.log(dday);
\ No newline at end of file