运行 ❯
注册自己的
Node
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
// no error on optional property, remove it and see what happens const car: { type: string, mileage?: number } = { type: "Toyota" }; car.mileage = 2000; console.log(car);
{ type: 'Toyota', mileage: 2000 }