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
// 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 }