scrimba
JS Deep Dive
Variables & Strings
Challenge: Template Literals
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Challenge: Template Literals
AboutCommentsNotes
Challenge: Template Literals
Expand for more info
index.js
run
preview
console
// Challenge: Help Darth Vader express himself to his son!
const mySon = "Luke";
const parentalStatus = "father";
const message = "mySon, I am your parentalStatus";
console.log(message);
Console
"mySon, I am your parentalStatus"
,
/index.html
-1:39