aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-04-05 02:03:28 +0900
committerpotappo <potappo@gmail.com>2021-04-12 20:49:49 +0900
commitd6a5be0edf1319752c4f1fbf73221fc2c0fdf821 (patch)
tree5d95dee3a4d8f22d91896d25ac6dd5699ffa9d7a
parent629c8a7c6ef28be1a073b3ac1efd3eeff196a5ea (diff)
downloadtranslated-content-d6a5be0edf1319752c4f1fbf73221fc2c0fdf821.tar.gz
translated-content-d6a5be0edf1319752c4f1fbf73221fc2c0fdf821.tar.bz2
translated-content-d6a5be0edf1319752c4f1fbf73221fc2c0fdf821.zip
Negative_repetition_count を更新
2021/02/20 時点の英語版に同期
-rw-r--r--files/ja/web/javascript/reference/errors/negative_repetition_count/index.html32
1 files changed, 18 insertions, 14 deletions
diff --git a/files/ja/web/javascript/reference/errors/negative_repetition_count/index.html b/files/ja/web/javascript/reference/errors/negative_repetition_count/index.html
index 0ffa96b1bd..406914eb76 100644
--- a/files/ja/web/javascript/reference/errors/negative_repetition_count/index.html
+++ b/files/ja/web/javascript/reference/errors/negative_repetition_count/index.html
@@ -2,43 +2,47 @@
title: 'RangeError: repeat count must be non-negative'
slug: Web/JavaScript/Reference/Errors/Negative_repetition_count
tags:
- - Errors
- - JavaScript
- - RangeError
+- Error
+- Errors
+- JavaScript
+- RangeError
translation_of: Web/JavaScript/Reference/Errors/Negative_repetition_count
---
<div>{{jsSidebar("Errors")}}</div>
-<h2 id="メッセージ">メッセージ</h2>
+<p>JavaScript の例外 "repeat count must be non-negative" は、 {{jsxref("String.prototype.repeat()")}} メソッドに <code>count</code> 引数が指定され、その値が負の数であった場合に発生します。</p>
-<pre class="syntaxbox">RangeError: repeat count must be non-negative (Firefox)
+<h2 id="Message">メッセージ</h2>
+
+<pre class="brush: js">RangeError: argument out of range
+RangeError: repeat count must be non-negative (Firefox)
RangeError: Invalid count value (Chrome)
</pre>
-<h2 id="エラータイプ">エラータイプ</h2>
+<h2 id="Error_type">エラータイプ</h2>
<p>{{jsxref("RangeError")}}</p>
-<h2 id="何がうまくいかなかったのか?">何がうまくいかなかったのか?</h2>
+<h2 id="What_went_wrong">原因</h2>
-<p>{{jsxref("String.prototype.repeat()")}} メソッドを使用しています。<code>count</code> パラメーターは、文字列の繰り返し回数を指定します。 これは 0 から正の {{jsxref("Infinity")}} 以下の値である必要があり、負数は使用できません。 有効値の範囲はこのように表現できます: [0, +∞)。</p>
+<p>{{jsxref("String.prototype.repeat()")}} メソッドを使用しています。 <code>count</code> 引数は、文字列の繰り返し回数を指定します。 これは 0 から正の {{jsxref("Infinity")}} 未満の値である必要があり、負の数は使用できません。 有効値の範囲は [0, +∞) のように説明できます。</p>
-<h2 id="例">例</h2>
+<h2 id="Examples">例</h2>
-<h3 id="無効なケース">無効なケース</h3>
+<h3 id="Invalid_cases">無効なケース</h3>
<pre class="brush: js example-bad">'abc'.repeat(-1); // RangeError </pre>
-<h3 id="有効なケース">有効なケース</h3>
+<h3 id="Valid_cases">有効なケース</h3>
<pre class="brush: js example-good">'abc'.repeat(0); // ''
'abc'.repeat(1); // 'abc'
'abc'.repeat(2); // 'abcabc'
-'abc'.repeat(3.5); // 'abcabcabc' (count は整数に変換されます)
+'abc'.repeat(3.5); // 'abcabcabc' (count は整数に変換されます)
</pre>
-<h2 id="関連項目">関連項目</h2>
+<h2 id="See_also">関連情報</h2>
<ul>
- <li>{{jsxref("String.prototype.repeat()")}}</li>
+ <li>{{jsxref("String.prototype.repeat()")}}</li>
</ul>