运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Errors</h1> <h2>The ReferenceError</h2> <p>You cannot use the value of a non-existing variable:</p> <p id="demo"></p> <script> let x = 5; try { x = y + 1; } catch(err) { document.getElementById("demo").innerHTML = err.name; } </script> </body> </html>