Exercise 4 · Chapter: Linear ProgramsRequired+50 XP
Greeting Builder
Use a template literal to build a greeting. Given the variables below, print:
Hello, Alex! You are 10 years old.
Need a hint?
3 available · costs 5 XP each
javascript
let name = "Alex";
let age = 10;
// Use a template literal to print the greeting
Output
Run your code to see the output here.