运行 ❯
获取你自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Operators</h1> <h2>The Assignment (=) Operator</h2> <p id="demo"></p> <script> // Assign the value 5 to x let x = 5; // Assign the value 2 to y let y = 2; // Assign the value x + y to z let z = x + y; // Display z document.getElementById("demo").innerHTML = "The sum of x + y is: " + z; </script> </body> </html>