aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/global_objects/number/tosource
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/javascript/reference/global_objects/number/tosource')
-rw-r--r--files/ja/web/javascript/reference/global_objects/number/tosource/index.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/number/tosource/index.html b/files/ja/web/javascript/reference/global_objects/number/tosource/index.html
new file mode 100644
index 0000000000..852dd36dd3
--- /dev/null
+++ b/files/ja/web/javascript/reference/global_objects/number/tosource/index.html
@@ -0,0 +1,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=".E6.A7.8B.E6.96.87" name=".E6.A7.8B.E6.96.87">構文</h2>
+
+<pre class="syntax">number.toSource()</pre>
+
+<h3 id=".E5.BC.95.E6.95.B0" name=".E5.BC.95.E6.95.B0">引数</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>