Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. JavaScript
  3. JavaScript 참고서
  4. 표준 내장 객체
  5. Date
  6. Date.prototype.getMonth()

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

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부터 시작합니다.

시도해 보기

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

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp