简单教程
提交运行
代码编辑器:
<p id="demo">单击按钮显示负无穷大</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=100; var demo=document.getElementById("demo"); demo.innerHTML=x.NEGATIVE_INFINITY; } </script>
运行结果: