본문 바로가기

DEVELOP

[javascript & jQuery] 현재 연도, 월, 일, 시간 가져오기

728x90
var date = new Date();
var dateAll = today.toLocaleString(), // ex: 2020. 6. 3. 오후 12:15:55
    dateDate = today.toLocaleDateString(), // ex: 2020. 6. 3.
    dateTime = today.toLocaleTimeString(); // 오후 12:15:55