Math.pow(x, y) 返回 x 的 y 次方

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