aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-24 22:28:45 +0900
committerGitHub <noreply@github.com>2021-09-24 22:28:45 +0900
commitbe3d355fdfbebf22d2216d75ad6aaca23ca433ed (patch)
tree5635fd773de794d82ee7f69bfc38ee947a27813a
parent1a9ad9e45a9b058c80005d802bdacff2aebe69d9 (diff)
downloadtranslated-content-be3d355fdfbebf22d2216d75ad6aaca23ca433ed.tar.gz
translated-content-be3d355fdfbebf22d2216d75ad6aaca23ca433ed.tar.bz2
translated-content-be3d355fdfbebf22d2216d75ad6aaca23ca433ed.zip
Global_Objects/Number/toSource を更新 (#2467)
- 2021/09/15 時点の英語版に同期
-rw-r--r--files/ja/web/javascript/reference/global_objects/number/tosource/index.html39
-rw-r--r--files/ja/web/javascript/reference/global_objects/number/tosource/index.md53
2 files changed, 53 insertions, 39 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
deleted file mode 100644
index 20ae3cb4bf..0000000000
--- a/files/ja/web/javascript/reference/global_objects/number/tosource/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
----
-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>
diff --git a/files/ja/web/javascript/reference/global_objects/number/tosource/index.md b/files/ja/web/javascript/reference/global_objects/number/tosource/index.md
new file mode 100644
index 0000000000..0d6c3c04fb
--- /dev/null
+++ b/files/ja/web/javascript/reference/global_objects/number/tosource/index.md
@@ -0,0 +1,53 @@
+---
+title: Number.prototype.toSource()
+slug: Web/JavaScript/Reference/Global_Objects/Number/toSource
+tags:
+ - JavaScript
+ - メソッド
+ - Number
+ - 非推奨
+ - プロトタイプ
+browser-compat: javascript.builtins.Number.toSource
+translation_of: Web/JavaScript/Reference/Global_Objects/Number/toSource
+---
+{{JSRef}} {{deprecated_header}}
+
+**`toSource()`** メソッドは、オブジェクトのソースコードを表す文字列を返します。
+
+## 構文
+
+```js
+toSource()
+```
+
+### 返値
+
+そのオブジェクトのソースコードを表す文字列です。
+
+## 例
+
+### ネイティブ関数
+
+組み込みの {{jsxref("Number")}} オブジェクトでは、`toSource()` はソースコードが利用できないことを表す次の文字列を返します。
+
+```js
+function Number() {
+ [native code]
+}
+```
+
+{{jsxref("Number")}} のインスタンスでは、 `toSource()` はソースコードを表す文字列を返します。
+
+このメソッドは JavaScript で内部的に呼び出されるものであり、ウェブのコードから明示的に呼び出されるものではありません。
+
+## 仕様書
+
+標準には含まれていません。
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- {{jsxref("Object.prototype.toSource()")}}