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
// Try playing around with modifying properties and adding ones to see what happens const car: { type: string, model: string, year: number } = { type: "Toyota", model: "Corolla", year: 2009 }; console.log(car);
{ type: 'Toyota', model: 'Corolla', year: 2009 }