运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Math</h1> <h2>The Math.max() Method</h2> <p>Return the numbers with the highest value:</p> <p id="demo"></p> <script> let a = Math.max(5, 10); let b = Math.max(0, 150, 30, 20, 38); let c = Math.max(-5, 10); let d = Math.max(-5, -10); let e = Math.max(1.5, 2.5); document.getElementById("demo").innerHTML = a + "<br>" + b + "<br>" + c + "<br>" + d + "<br>" + e; </script> </body> </html>