scrimba
Learn Basic JavaScript
Concatenating Strings with Plus Operator
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

Concatenating Strings with Plus Operator
AboutCommentsNotes
Concatenating Strings with Plus Operator
Expand for more info
index.js
run
preview
console
// Example
var ourStr = "I come first. " + "I come second.";

// Only change code below this line

var myStr;

Console
"I am a "double quoted" string inside "double quotes""
,
index.html
-1:00