运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Global Properties</h1> <h2>The -Infinity Property</h2> <p>-1.797693134862316E+308 is the negative limit of a JavaScript number:</p> <p id="demo"></p> <script> let x = -1.797693134862316E+308; let y = x * 1.001; document.getElementById("demo").innerHTML = y; </script> </body> </html>