aboutsummaryrefslogtreecommitdiff
path: root/files/ja
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja')
-rw-r--r--files/ja/web/javascript/reference/global_objects/math/max/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/global_objects/math/max/index.html b/files/ja/web/javascript/reference/global_objects/math/max/index.html
index e650c30f15..afd2433e13 100644
--- a/files/ja/web/javascript/reference/global_objects/math/max/index.html
+++ b/files/ja/web/javascript/reference/global_objects/math/max/index.html
@@ -55,7 +55,7 @@ Math.max(-10, 20); // 20
<pre class="brush: js notranslate">var arr = [1,2,3];
var max = arr.reduce(function(a, b) {
return Math.max(a, b);
-});
+}, -Infinity);
</pre>
<p>次の関数では {{jsxref("Function.prototype.apply()")}} を使用して配列の最大値を取得します。 <code>getMaxOfArray([1, 2, 3])</code> は <code>Math.max(1, 2, 3)</code> と同等ですが、 <code>getMaxOfArray()</code> はプログラム的に構築された配列に使用することができます。これは比較的要素が少ない配列に対して使用してください。</p>