Run ❯
Get your
own Node
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
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'.