运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Operators</h1> <h2>The ?. Operator</h2> <p>The ?. operator returns undefined if an object is undefined or null (instead of throwing an error).</p> <p>Car name is:</p> <p id="demo"></p> <script> const car = {type:"Fiat", model:"500", color:"white"}; let name = car?.name; document.getElementById("demo").innerHTML = name; </script> </body> </html>