scrimba
Learn Basic JavaScript
Concatenating Strings with the Plus Equals 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 the Plus Equals Operator
AboutCommentsNotes
Concatenating Strings with the Plus Equals Operator
Expand for more info
index.js
run
preview
console
// Example
var ourStr = "I come first. ";
ourStr += "I come second.";

// Only change code below this line

var myStr;

Console
"This is the start. This is the end."
,
index.html
-1:09