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.toDateString()

toDateString() メソッドは、人間が読めるアメリカ英語の表記で Date オブジェクトの「日付」部を返します。

構文

dateObj.toDateString()

戻り値

与えられた Date オブジェクトの「日付」部を表す文字列を人間が読めるアメリカ英語の表記で返します。

説明

Date インスタンスは、特定の時点を参照します。toString() を呼び出すと、人間が読めるアメリカ英語の表記で日付を返します。SpiderMonkey では、この文字列は「日付」部 (日、月、年) と続く「時刻」部 (時、分、秒、タイムゾーン) からなります。時々、日付の文字列を得たいことがあるでしょう。そのような場合に、toDateString() メソッドが使えます。

ECMA-262 に従って実装されたエンジンは、Date オブジェクトに対して toString() メソッドから得られる文字列と異なることがあるため、toDateString() メソッドは特に役立ちます。その文字列の表記は実装依存であり、単純に文字列を切り出す方法では、複数のエンジンで一貫した結果を得られない可能性があります。

toDateString() の基本的な使い方

var d = new Date(1993, 6, 28, 14, 39, 7);

console.log(d.toString());     // Wed Jul 28 1993 14:39:07 GMT-0600 (PDT)
console.log(d.toDateString()); // Wed Jul 28 1993

仕様

仕様書 策定状況 備考
ECMAScript 3rd Edition (ECMA-262) 標準 初期定義。
ECMAScript 5.1 (ECMA-262)
Date.prototype.toDateString の定義
標準
ECMAScript 2015 (6th Edition, ECMA-262)
Date.prototype.toDateString の定義
標準
ECMAScript 2017 Draft (ECMA-262)
Date.prototype.toDateString の定義
ドラフト

ブラウザの実装状況

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

関連情報

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

 このページの貢献者: Marsf, shide55
 最終更新者: Marsf,