aboutsummaryrefslogtreecommitdiff
path: root/files/ja
diff options
context:
space:
mode:
authorTomoyuki Hata <7702653+hata6502@users.noreply.github.com>2022-01-25 11:36:09 +0900
committerIrvin <irvinfly@gmail.com>2022-02-16 00:04:17 +0800
commit48775b07d0867f298e78553cde9b5fbafc03549f (patch)
tree615454d3b26b989444b45aa2324d14d959f9662f /files/ja
parent76c2fdbe9ccc65244df60929fa17bce3ebc70117 (diff)
downloadtranslated-content-48775b07d0867f298e78553cde9b5fbafc03549f.tar.gz
translated-content-48775b07d0867f298e78553cde9b5fbafc03549f.tar.bz2
translated-content-48775b07d0867f298e78553cde9b5fbafc03549f.zip
Fix Math.max() initial value to -Infinity
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>