scrimba
Learn Basic JavaScript
Constructing Strings with Variables
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

Constructing Strings with Variables
AboutCommentsNotes
Constructing Strings with Variables
Expand for more info
index.js
run
preview
console
// Example
var ourName = "freeCodeCamp";
var ourStr = "Hello, our name is " + ourName + ", how are you?";

// Only change code below this line
var myName;
var myStr;
Console
"This is the first sentence. This is the second sentence."
,
index.html
-1:10