JavaScript MIN_VALUE 属性
JavaScript基础 2022-06-08 11:03:01小码哥的IT人生shichen
JavaScript MIN_VALUE 属性
定义和用法
MIN_VALUE 属性是 JavaScript 中可表示的最小的数(接近 0 ,但不是负数)。它的近似值为 5 x 10-324。
语法
Number.MIN_VALUE
实例
返回 JavaScript 中可能的最小值:
<script type="text/javascript">
document.write(Number.MIN_VALUE
);
</script>
输出:
5e-324
完整实例【TIY】:
<html>
<body>
<script type="text/javascript">
document.write(Number.MIN_VALUE);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
TIY
完整实例【MIN_VALUE】:
<html>
<body>
<script type="text/javascript">
document.write(Number.MIN_VALUE);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例返回 JavaScript 中最小的数。