Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Basic string interpolation const name = 'Alice'; console.log(`Hello, ${name}!`); // Multi-line string const message = ` This is a multi-line string in JavaScript. `; console.log(message); // Simple expression const price = 10; const tax = 0.2; console.log(`Total: $${price * (1 + tax)}`);
Hello, Alice! This is a multi-line string in JavaScript. Total: $12