19. Date 객체
2024. 11. 4. 16:41ㆍ자바스크립트(Javascript)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Date 객체</title>
</head>
<body>
<script>
console.log(new Date()) // Mon Nov 04 2024 16:36:32 GMT+0900 (한국 표준시)
console.log(new Date(24, 11, 4)) // Thu Dec 04 1924 00:00:00 GMT+0900 (한국 표준시)
//24: 1900년도, 11:0~11월
console.log(new Date(24, 10, 4)) // Tue Nov 04 1924 00:00:00 GMT+0900 (한국 표준시)
// 2024: 2024년도
const current_time = new Date()
console.log(`현재 연도 : ${current_time.getFullYear()}`) // 현재 연도 : 2024
console.log(`현재 월 : ${current_time.getMonth()+1}`) // 현재 월 : 11
console.log(`현재 일 : ${current_time.getDate()}`) // 현재 일 : 4
console.log(`현재 시 : ${current_time.getHours()}`) // 현재 시 : 16
console.log(`현재 분 : ${current_time.getMinutes()}`) // 현재 분 : 39
console.log(`현재 초 : ${current_time.getSeconds()}`) // 현재 초 : 36
</script>
</body>
</html>
728x90
LIST
'자바스크립트(Javascript)' 카테고리의 다른 글
22. 시계만들기 (0) | 2024.11.04 |
---|---|
21. 윈도우 객체 (0) | 2024.11.04 |
18. String 객체 (0) | 2024.11.04 |
17. Math 객체 (0) | 2024.11.04 |
16. 프로토타입 (10) | 2024.11.04 |