--- title: Date.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/Date/toSource tags: - Date - JavaScript - Method - Prototype - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Date/toSource ---
{{JSRef}} {{obsolete_header}}

toSource() メソッドは、オブジェクトのソースコードを表す文字列を返します。

構文

dateObj.toSource()
Date.toSource()

返値

与えられた {{jsxref("Global_Objects/Date", "Date")}} オブジェクトのソースコードを表す文字列。

ネイティブ関数

組み込まれた {{jsxref("Date")}} オブジェクトについて、toSource() は、ソースコードが利用できないことを示す次の文字列を返します。

function Date() {
    [native code]
}

仕様書

仕様の一部ではありません。

ブラウザーの互換性

{{Compat("javascript.builtins.Date.toSource")}}

関連情報