运行 ❯
获取你的
自己的 Node
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
// Try playing around with modifying properties and adding ones to see what happens const car: { type: string, model: string, year: number } = { type: "Toyota", model: "Corolla", year: 2009 }; console.log(car);
{ type: 'Toyota', model: 'Corolla', year: 2009 }