运行 ❯
获取您的
自己的 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'.