scrimba
Frontend Career Path
Making websites interactive
Chrome Extension
Write your first template string
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

Write your first template string
AboutCommentsNotes
Write your first template string
Expand for more info
index.js
run
preview
console
// template strings/literals

const recipient = "James"

// Refactor the email string to use template strings
const email = "Hey " + recipient + "! How is it going? Cheers Per"

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