執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Objects</h1> <h2>Creating an Object</h2> <p id="demo"></p> <script> // Create an Object: const car = {type:"Fiat", model:"500", color:"white"}; // Display Data from the Object: document.getElementById("demo").innerHTML = "The car type is " + car.type; </script> </body> </html>