Math.max( number1, number2, …, numberN )メソッドは、引数「number1~numberN」に指定した数値のうちの最大値を返す静的メソッド。
構文
Math.max( number1, number2, ..., numberN )
引数
- number1, number2, …, numberN
- 複数の数値を、カンマ区切りで指定する。
戻り値
最大値。
サンプル
<script>
document.write( '<p>Math.max( 43, 72, 65, 85, 59 ): ' + Math.max( 43, 72, 65, 85, 59 ) + '</p>' );
document.write( '<p>Math.max( 43, -72, 65, -85, 59 ): ' + Math.max( 43, -72, 65, -85, 59 ) + '</p>' );
</script>
document.write( '<p>Math.max( 43, 72, 65, 85, 59 ): ' + Math.max( 43, 72, 65, 85, 59 ) + '</p>' );
document.write( '<p>Math.max( 43, -72, 65, -85, 59 ): ' + Math.max( 43, -72, 65, -85, 59 ) + '</p>' );
</script>
↓↓↓出力結果↓↓↓