JavaScript 中的 Math.max() 函数
htmljavascriptweb developmentfront end technology
Math 对象的 max() 函数接受多个数字并返回其中最大的数字。
- 如果您将单个数字传递给此函数,它将返回相同的数字
- 并且,如果您不向其传递任何参数,它将返回无穷大。
语法
其语法如下
Math.max(48, 148, 3654);
示例
<html> <head> <title>JavaScript 示例</title> </head> <body> <script type="text/javascript"> var result = Math.max(48, 148, 3654); document.write("给定数字的最大值:"+result); </script> </body> </html>
输出
给定数字的最大值:3654