Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.getFullYear()

getFullYear() メソッドは、地方時に基づき、指定された日時の「年」を返します。

getYear() メソッドの代わりに、このメソッドを使用してください。

構文

dateObj.getFullYear()

戻り値

地方時に基づき、与えた日付の年に相当する数値。

説明

getFullYear() が返す値は絶対値です。1000 年から 9999 年までの日付に対して、getFullYear() は 1995 のような 4 桁の数字を返します。2000 年以降の年について正しい値を得るには、この関数を使用してください。【訳注: 実装依存の Date.prototype.getYear() は使用しないでください。】

getFullYear() を使う

以下の例は、変数 year に今年を表す 4 桁の数字を代入します。

var today = new Date();
var year = today.getFullYear();

仕様

仕様書 策定状況 備考
ECMAScript 1st Edition (ECMA-262) 標準 初期定義。JavaScript 1.3 で実装。
ECMAScript 5.1 (ECMA-262)
Date.prototype.getFullYear の定義
標準
ECMAScript 2015 (6th Edition, ECMA-262)
Date.prototype.getFullYear の定義
標準
ECMAScript 2017 Draft (ECMA-262)
Date.prototype.getFullYear の定義
ドラフト

ブラウザの実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート (有) (有) (有) (有) (有) (有)

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: Marsf, teoli, ethertank, Yuichirou, Mgjbot, Kozawa
 最終更新者: Marsf,