diff options
Diffstat (limited to 'files/ja/web/javascript/reference/errors/not_a_codepoint')
-rw-r--r-- | files/ja/web/javascript/reference/errors/not_a_codepoint/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html b/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html index 8bc1d11a3f..489619f6ea 100644 --- a/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html +++ b/files/ja/web/javascript/reference/errors/not_a_codepoint/index.html @@ -18,11 +18,11 @@ translation_of: Web/JavaScript/Reference/Errors/Not_a_codepoint RangeError: Invalid code point {0} (Chromium) </pre> -<h2 id="Error_type">エラー種別</h2> +<h2 id="Error_type">エラーの種類</h2> <p>{{jsxref("RangeError")}}</p> -<h2 id="What_went_wrong">原因</h2> +<h2 id="What_went_wrong">エラーの原因</h2> <p>{{jsxref("String.fromCodePoint()")}} は、 {{jsxref("NaN")}} 値、負の整数 (-1)、 整数以外 (5.4)、 0x10FFFF より大きい数 (1114111) が渡されるとこのエラーを発生します。</p> @@ -39,7 +39,7 @@ String.fromCodePoint(3.14); // RangeError String.fromCodePoint(3e-2); // RangeError String.fromCodePoint(NaN); // RangeError</pre> -<h3 id="Valid_cases">有効なケース</h3> +<h3 id="Valid_cases">有効な場合</h3> <pre class="brush: js example-good">String.fromCodePoint(42); // "*" String.fromCodePoint(65, 90); // "AZ" |