Math.floor(x) 返回 x 的向下舍入值

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1>JavaScript Math.floor()</h1>
  6.  
  7. <p>Math.floor(x) 返回 x 被下舍入为最接近整数的值:</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. document.getElementById("demo").innerHTML = Math.floor(4.7);
  13. </script>
  14.  
  15. </body>
  16. </html>