This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Date.prototype.getDate()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015년 7월.
getDate() 메서드는 주어진 날짜의 현지 시간 기준 일을 반환합니다.
In this article
시도해 보기
const birthday = new Date("August 19, 1975 23:15:30");const date1 = birthday.getDate();console.log(date1);// Expected output: 19구문
js
dateObj.getDate();반환 값
현지 시간에 따라, 주어진 날짜의 일에 해당하는 1 이상 31 이하의 정수.
예제
>getDate() 사용하기
아래 코드의 두 번째 명령문은Xmas95의 값에 기반하여day에 2를 할당합니다.
js
var Xmas95 = new Date("December 25, 1995 23:15:30");var day = Xmas95.getDate();console.log(day); // 25명세
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-date.prototype.getdate> |