JavaScript中Number对象代表的最大值是多少?

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>

以上是 JavaScript中Number对象代表的最大值是多少? 的全部内容, 来源链接: utcz.com/z/322433.html

回到顶部