Math.floor(x) 返回 x 的向下舍入值
- <!DOCTYPE html>
- <html>
- <body>
- <h1>JavaScript Math.floor()</h1>
- <p>Math.floor(x) 返回 x 被下舍入为最接近整数的值:</p>
- <p id="demo"></p>
- <script>
- document.getElementById("demo").innerHTML = Math.floor(4.7);
- </script>
- </body>
- </html>
本文档使用 技术池 构建