This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Date.prototype.getMonth()
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월.
getMonth() 메서드는Date 객체의 월 값을 현지 시간에 맞춰 반환합니다. 월은 0부터 시작합니다.
In this article
시도해 보기
const moonLanding = new Date("July 20, 69 00:20:18");console.log(moonLanding.getMonth()); // (January gives 0)// Expected output: 6구문
js
dateObj.getMonth();반환 값
현지 시간 기준 월을 나타내는 0에서 11 사이의 정수. 0은 1월, 1은 2월... 을 나타냅니다.
예제
>getMonth() 사용하기
다음 예제는Date 객체Xmas95의 값을 사용해 변수month에 11을 할당합니다.
js
var Xmas95 = new Date("December 25, 1995 23:15:30");var month = Xmas95.getMonth();console.log(month); // 11참고 :참고: 필요한 경우Intl.DateTimeFormat()과options 매개변수를 사용해 해당하는 달의 이름("January" 등)을 가져올 수 있습니다. 이 방법을 사용하면 국제화도 보다 편리합니다.
js
var options = { month: "long" };console.log(new Intl.DateTimeFormat("ko-KR", options).format(Xmas95));// 12월console.log(new Intl.DateTimeFormat("en-US", options).format(Xmas95));// December명세
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-date.prototype.getmonth> |