Run ❯
Get your
own Node
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
// 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 }