运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Math</h2> <p>Math.pow(x,y) returns the value of x to the power of y:</p> <p id="demo"></p> <script> let a = Math.pow(0, 1); let b = Math.pow(1, 1); let c = Math.pow(1, 10); let d = Math.pow(3, 3); let e = Math.pow(-3, 3); let f = Math.pow(2, 4); document.getElementById("demo").innerHTML = a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e + "<br>" + f; </script> </body> </html>