執行 ❯
Node 伺服器
×
更改方向
更改主題,深色/淺色
前往 Spaces
const car = { type: "Toyota", }; car.type = "Ford"; // no error car.type = 2; // Error: Type 'number' is not assignable to type 'string'. console.log(car);
prog.ts(5,7): error TS2322: Type 'number' is not assignable to type 'string'.