运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Math</h2> <p>Math.exp(x) returns the value of E<sup>x</sup>:</p> <p id="demo"></p> <script> let a = Math.exp(1); let b = Math.exp(-1); let c = Math.exp(5); let d = Math.exp(10); document.getElementById("demo").innerHTML = a + "<br>" + b + "<br>" + c + "<br>" + d; </script> </body> </html>