scrimba
Learn JavaScript
Chrome Extension
Template strings on multiple lines
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

Template strings on multiple lines
AboutCommentsNotes
Template strings on multiple lines
Expand for more info
index.js
run
preview
console
// template strings/literals

const recipient = "James"
const sender = "Per Harald Borgen"

// Break the email string into multiple lines
const email = `Hey ${recipient}! How is it going? Cheers ${sender}`

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