blob: 58d6fbbda598f694c4f431d9ddc37c7f4368b532 (
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
|
---
title: Number.prototype.toSource()
slug: Web/JavaScript/Reference/Global_Objects/Number/toSource
translation_of: Web/JavaScript/Reference/Global_Objects/Number/toSource
---
<p>{{JSRef("Global_Objects", "Number")}}{{ Non-standard_header() }}</p>
<h2 id=".E6.A6.82.E8.A6.81" name=".E6.A6.82.E8.A6.81">概要</h2>
<p>オブジェクトのソースコードを表す文字列を返します。</p>
<h2 id="Syntax">構文</h2>
<pre class="syntax">number.toSource()</pre>
<h3 id="Arguments">引数</h3>
<p>無し。</p>
<h2 id=".E8.AA.AC.E6.98.8E" name=".E8.AA.AC.E6.98.8E">説明</h2>
<p><code>toSource</code> メソッドは以下の値を返します。:</p>
<ul>
<li>組み込み <code>Number</code> オブジェクトでは、 <code>toSource</code> はソースコードが存在しないことを示す以下の文字列を返します。:</li>
</ul>
<pre class="eval">function Number() {[native code]}
</pre>
<ul>
<li><code>Number</code> オブジェクトのインスタンスでは、 <code>toSource</code> はそのソースコードを表す文字列を返します。</li>
</ul>
<p>このメソッドは、通常、 JavaScript によって内部的に呼ばれ、コード中で明示的には呼ばれません。</p>
<h2 id=".E5.8F.82.E7.85.A7" name=".E5.8F.82.E7.85.A7">参照</h2>
<p><a href="ja/Core_JavaScript_1.5_Reference/Global_Objects/Object/toSource">Object.prototype.toSource</a></p>
|