diff options
Diffstat (limited to 'files/pt-br')
-rw-r--r-- | files/pt-br/web/javascript/reference/global_objects/math/max/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/pt-br/web/javascript/reference/global_objects/math/max/index.html b/files/pt-br/web/javascript/reference/global_objects/math/max/index.html index b28723014f..b294467920 100644 --- a/files/pt-br/web/javascript/reference/global_objects/math/max/index.html +++ b/files/pt-br/web/javascript/reference/global_objects/math/max/index.html @@ -52,7 +52,7 @@ Math.max(-10, 20); // 20 <pre class="brush: js">var arr = [1, 2, 3]; var max = arr.reduce(function(a, b) { return Math.max(a, b); -});</pre> +}, -Infinity);</pre> <p>A função a seguir utiliza {{jsxref("Function.prototype.apply()")}} para encontrar o elemento de maior valor dentro do array. <code>getMaxOfArray([1,2,3])</code> é equivalente a <code>Math.max(1, 2, 3)</code>, mas você pode usar <code>getMaxOfArray</code> em arrays construídos programaticamente e o ideal é utilizá-la somente em arrays com relativamente poucos elementos.</p> |