FreeCodeCamp.com - Basic JavaSript - Appending Variables to Strings

Link to FreeCodeCamp

Just as we can build a string over multiple lines out of string literals, we can also append variables to a string using the plus equals (+=) operator.

Instructions

Set someAdjective and append it to myStr using the += operator.

Sollution:

// Example
var anAdjective = "awesome!";
var ourStr = "Free Code Camp is ";
ourStr += anAdjective;

// Only change code below this line
var someAdjective = "great";
var myStr = "Learning to code is ";
myStr += someAdjective;

Komentáře

Populární příspěvky z tohoto blogu

FreeCodeCamp.com - Basic JavaSript - Passing Values to Functions with Arguments

FreeCodeCamp.com - Basic JavaSript - Word Blanks

FreeCodeCamp.com - Basic JavaSript - Understand String Immutability