blob: d54aebfade7fb6a9e5788c7bf95c9671381114a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
---
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
---
<div>{{JSRef}} {{obsolete_header}}</div>
<p><strong><code>toSource()</code></strong> メソッドは、オブジェクトのソースコードを表す文字列を返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>dateObj</var>.toSource()
Date.toSource()</pre>
<h3 id="Return_value" name="Return_value">返値</h3>
<p>与えられた {{jsxref("Global_Objects/Date", "Date")}} オブジェクトのソースコードを表す文字列。</p>
<h2 id="Examples" name="Examples">例</h2>
<h3 id="Native_function" name="Native_function">ネイティブ関数</h3>
<p>組み込まれた {{jsxref("Date")}} オブジェクトについて、<code>toSource()</code> は、ソースコードが利用できないことを示す次の文字列を返します。</p>
<pre class="brush: js notranslate">function Date() {
[native code]
}
</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<p>仕様の一部ではありません。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("javascript.builtins.Date.toSource")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{jsxref("Object.prototype.toSource()")}}</li>
</ul>
|