JavaScript中Number.MAX_VALUE属性的使用方法
程序员文章站
2023-11-06 13:28:34
number.max_value 属性属于静态number对象。这代表了最大可能的正数的javascript可以一起工作的常量。
该常量有实际的值为
语法
可以使...
number.max_value 属性属于静态number对象。这代表了最大可能的正数的javascript可以一起工作的常量。
该常量有实际的值为
语法
可以使用以下语法访问该值:
var val = number.max_value;
示例 :
这里是表示属性的使用的例子。
<html> <head> <script type="text/javascript"> <!-- function showvalue() { var val = number.max_value; alert("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>
这将产生以下结果: