scrimba
Learn Basic JavaScript
Appending Variables to Strings
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

Appending Variables to Strings
AboutCommentsNotes
Appending Variables to Strings
Expand for more info
index.js
run
preview
console
// Example
var anAdjective = "awesome!";
var ourStr = "freeCodeCamp is ";
ourStr += anAdjective;

// Only change code below this line

var someAdjective;
var myStr = "Learning to code is ";
Console
index.html
-0:54