运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Operators</h1> <h2>The -- Operator</h2> <p>y = 5, calculate x = y--:</p> <p id="demo1"></p> <p id="demo2"></p> <p><strong>Note:</strong> y is decremented after it is assigned to x (post-decremented).</p>. <script> let y = 5; let x = y--; document.getElementById("demo1").innerHTML = "Value of y: " + y; document.getElementById("demo2").innerHTML = "Value of x: " + x; </script> </body> </html>