一、Number.MIN_VALUE属性属于静态Number对象。这代表了尽可能小的正数的JavaScript可以工作的常量。
该常量的实际值是 5 x 10-324
语法访问属性:
var val = Number.MIN_VALUE;
<!doctype html> <html> <head> <script type="text/javascript"> <!-- function showValue() { var val = Number.MIN_VALUE; alert("Value of Number.MIN_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>
页面结果: