diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-04-17 00:31:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-17 00:31:36 +0900 |
commit | b8484c2ee90de7ce5b451da19bee864b06d3675e (patch) | |
tree | 832da1fc2bc08d22b7001424829fcd1e6375a260 | |
parent | 70942852ffa5e35aae179533ee7874afebde4840 (diff) | |
download | translated-content-b8484c2ee90de7ce5b451da19bee864b06d3675e.tar.gz translated-content-b8484c2ee90de7ce5b451da19bee864b06d3675e.tar.bz2 translated-content-b8484c2ee90de7ce5b451da19bee864b06d3675e.zip |
Web/JavaScript/Reference/Global_Objects/Boolean/toSource を更新 (#404)
2021/02/20 の英語版に同期
-rw-r--r-- | files/ja/web/javascript/reference/global_objects/boolean/tosource/index.html | 58 |
1 files changed, 26 insertions, 32 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/boolean/tosource/index.html b/files/ja/web/javascript/reference/global_objects/boolean/tosource/index.html index e848f174ef..1ebb3adbd5 100644 --- a/files/ja/web/javascript/reference/global_objects/boolean/tosource/index.html +++ b/files/ja/web/javascript/reference/global_objects/boolean/tosource/index.html @@ -2,55 +2,49 @@ title: Boolean.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/Boolean/toSource tags: - - Boolean - - JavaScript - - Method - - Non-standard - - Prototype +- Boolean +- Deprecated +- JavaScript +- Method +- Non-standard +- Obsolete +- Prototype translation_of: Web/JavaScript/Reference/Global_Objects/Boolean/toSource --- -<div>{{JSRef}} {{non-standard_header}}</div> +<div>{{JSRef}} {{deprecated_header}}</div> -<p><code><strong>toSource()</strong></code> メソッドはオブジェクトのソースコードを表す文字列を返します。</p> +<p><code><strong>toSource()</strong></code> メソッドは、オブジェクトのソースコードを表す文字列を返します。</p> -<h2 id="Syntax" name="Syntax">構文</h2> +<h2 id="Syntax">構文</h2> -<pre class="syntaxbox"><code><em>booleanObj</em>.toSource() Boolean.toSource()</code></pre> - -<h3 id="Return_value" name="Return_value">戻り値</h3> +<pre class="brush: js"><var>booleanObj</var>.toSource() + Boolean.toSource()</pre> + +<h3 id="Return_value">返値</h3> <p>オブジェクトのソースコードを表す文字列です。</p> -<h2 id="Description" name="Description">説明</h2> - -<p><code>toSource</code> メソッドは以下の値を返します。</p> - -<ul> - <li>組み込みの {{jsxref("Boolean")}} オブジェクトに対しては、<code>toSource</code> はソースコードが利用不可能なことを示す以下の文字列を返します。 - - <pre class="brush:js">function Boolean() { - [native code] -}</pre> - </li> - <li>{{jsxref("Boolean")}} のインスタンスに対しては、<code>toSource</code> はソースコードを表す文字列を返します。</li> -</ul> +<h2 id="Examples">例</h2> -<p>このメソッドはたいてい JavaScript によって内部的に呼び出され、コードで明示的に呼び出されることはありません。</p> +<h3 id="Native_function">ネイティブ関数</h3> -<h2 id="Specifications" name="Specifications">仕様</h2> +<p>組み込みの {{jsxref("Boolean")}} オブジェクトでは、 <code>toSource</code> はソースコードが利用できないことを示す以下の文字列を返します。</p> -<p>いずれの標準仕様にも組み込まれていません。JavaScript 1.3 で実装されました。</p> +<pre class="brush: js">function Boolean() { + [native code] +} +</pre> -<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2> +<h2 id="Specifications">仕様書</h2> -<div> +<p>いずれの標準仕様にも組み込まれていません。</p> +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> <p>{{Compat("javascript.builtins.Boolean.toSource")}}</p> -</div> -<h2 id="See_also" name="See_also">関連情報</h2> +<h2 id="See_also">関連情報</h2> <ul> - <li>{{jsxref("Object.prototype.toSource()")}} {{non-standard_inline}}</li> + <li>{{jsxref("Object.prototype.toSource()")}}</li> </ul> |