Descrição
Este método retorna o maior de zero ou mais números. Se nenhum argumento for fornecido, o resultado será–Infinity.
Sintaxe
Sua sintaxe é a seguinte -
Math.max(value1, value2, ... valueN ) ;
Detalhes de Parâmetro
value1, value2, ... valueN : Números.
Valor de retorno
Retorna o maior de zero ou mais números.
Exemplo
Experimente o seguinte programa de exemplo.
<html>
<head>
<title>JavaScript Math max() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.max(10, 20, -1, 100);
document.write("First Test Value : " + value );
var value = Math.max(-1, -3, -40);
document.write("<br />Second Test Value : " + value );
var value = Math.max(0, -1);
document.write("<br />Third Test Value : " + value );
var value = Math.max(100);
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
Resultado
First Test Value : 100
Second Test Value : -1
Third Test Value : 0
Fourth Test Value : 100