JavaScript - 4
JavaScript - 4: Template Literals
Use template literals (backticks) to create a nice message that includes variables. Print it with console.log().
👀 Show Solution
let name = "Emma";
let age = 28;
let city = "New York";
console.log(\`Hello, my name is \${name}. I am \${age} years old and I live in \${city}.\`);