scrimba
Learn JavaScript
Chrome Extension
Make the template string even more dynamic
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

Make the template string even more dynamic
AboutCommentsNotes
Make the template string even more dynamic
Expand for more info
index.js
run
preview
console
// template strings/literals

const recipient = "James"
// Create a new variable, sender, and set its value to your name

// Use your sender variable instead of "Per"
const email = `Hey ${recipient}! How is it going? Cheers Per`

console.log(email)
Console
"Hey James! How is it going? Cheers Per"
,
/index.html
-0:51