Date 객체는 JavaScript 언어에 내장된 데이터 유형입니다. Date 객체는 아래와 같이 새로운 Date( )로 생성됩니다.
Date 개체가 생성되면 여러 메서드를 사용하여 해당 개체에 대해 작업할 수 있습니다. 대부분의 방법을 사용하면 로컬 시간이나 UTC(범용 또는 GMT) 시간을 사용하여 개체의 연도, 월, 일, 시, 분, 초 및 밀리초 필드를 가져오고 설정할 수 있습니다.
날짜 객체의 getDate() 함수는 현재 날짜의 날짜를 반환합니다.
구문
구문은 다음과 같습니다.
dateObj.getDate();
예시
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September 26, 1989 00:4:00'); document.write(dateObj.getDate()); </script> </body> </html>
출력
26
예시
날짜를 언급하지 않으면 기본적으로 1이 반환됩니다.
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September, 1989 00:4:00'); document.write(dateObj.getDate()); </script> </body> </html>
출력
1
예시
날짜 객체를 생성하는 동안 생성자에 값을 전달하지 않으면 이 함수는 현재 날짜(현재 날짜)의 날짜를 반환합니다.
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date(); document.write(dateObj.getDate()); </script> </body> </html>
출력
24