JavaScript中数字的最大可能值为1.7976931348623157157E + 308。Number.MAX_VALUE属性属于静态Number对象。它代表JavaScript可以使用的最大可能正数的常量。
您可以尝试运行以下代码以获取由Number对象表示的最大值-
<html> <head> <script> <!-- function showValue() { var val = Number.MAX_VALUE; document.write ("Value of Number.MAX_VALUE : " + val ); } //--> </script> </head> <body> <p>Click the following to see the result:</p> <form> <input type="button" value="Click Me" onclick="showValue();" /> </form> </body> </html>