From 8bfce2dbd4d6b3897a303be7104de62e3e642b67 Mon Sep 17 00:00:00 2001 From: leebj Date: Wed, 21 Aug 2024 17:23:21 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/applib/js/string-support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/resources/applib/js/string-support.js b/src/main/webapp/resources/applib/js/string-support.js index a1b1530..c0b73ee 100644 --- a/src/main/webapp/resources/applib/js/string-support.js +++ b/src/main/webapp/resources/applib/js/string-support.js @@ -134,7 +134,7 @@ class StringSupport { // 유효날짜 확인 if (year>="0001" && year<="9999" && month>="01" && month<="12") { - febDays = "29"; + let febDays = "29"; if ((parseInt(year,10) % 4) == 0) { if ((parseInt(year,10) % 100) == 0 && (parseInt(year,10) % 400) != 0){ febDays = "28";