function test8(){const now = new Date();const area8 = document.getElementById("area8");area8.innerHTML = "현재 날짜 및 시간 (getTime())" + now.getTime() + ""; } // 2024년 6월 11일 날짜로 생성 const begin = new Date(2024, 6-1, 11); // Date(연도, 월-1, 일); area8.innerHTML += "현재 날짜 및 시간 (getTime())" + begin.getTime() + ""; // 2024년 11월 25일 날짜로 생성 const end = new Date(..