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
// String type examples let color: string = "blue"; let fullName: string = 'John Doe'; let age: number = 30; let sentence: string = `Hello, my name is ${fullName} and I'll be ${age + 1} next year.`; // Output the values console.log(color); console.log(fullName); console.log(age); console.log(sentence);
blue John Doe 30 Hello, my name is John Doe and I'll be 31 next year.