카테고리 없음
JavaScript 현재 시각, 날짜 구하기
JS 현재 시각, 날짜 구하기 오늘 날짜 let today = new Date(); 연도, 월, 일 구하기 let year = today.getFullYear(); // 년도 let month = today.getMonth(); // 월 let date = today.getDate(); // 날짜 let day = today.getDay(); // 요일 시간, 분, 초, 밀리초 구하기 let today = new Date(); let hours = today.getHours(); // 시 let minutes = today.getMinutes(); // 분 let seconds = today.getSeconds(); // 초 let milliseconds = today.getMilliseconds(); ..
2020. 6. 3. 11:22
최근댓글