Math.abs(x) 返回 x 的绝对值

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h1>JavaScript Math.abs()</h1>
  6.  
  7. <p>Math.abs(x) 返回 x 的绝对值:</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. document.getElementById("demo").innerHTML = Math.abs(-4.4);
  13. </script>
  14.  
  15. </body>
  16. </html>