2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244b9
title: Constructing Strings with Variables
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cqk8rf4'
2018-09-30 23:01:58 +01:00
---
## Description
< section id = 'description' >
Sometimes you will need to build a string, < a href = "https://en.wikipedia.org/wiki/Mad_Libs" target = "_blank" > Mad Libs< / a > style. By using the concatenation operator (< code > +< / code > ), you can insert one or more variables into a string you're building.
< / section >
## Instructions
< section id = 'instructions' >
Set < code > myName< / code > to a string equal to your name and build < code > myStr< / code > with < code > myName< / code > between the strings < code > "My name is "< / code > and < code > " and I am well!"< / code >
< / section >
## Tests
< section id = 'tests' >
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: < code > myName</ code > should be set to a string at least 3 characters long
2019-07-13 00:07:53 -07:00
testString: assert(typeof myName !== 'undefined' & & myName.length > 2);
2018-10-04 14:37:37 +01:00
- text: Use two < code > +</ code > operators to build < code > myStr</ code > with < code > myName</ code > inside it
2019-07-13 00:07:53 -07:00
testString: assert(code.match(/["']\s*\+\s*myName\s*\+\s*["']/g).length > 0);
2018-09-30 23:01:58 +01:00
```
< / section >
## Challenge Seed
< section id = 'challengeSeed' >
< div id = 'js-seed' >
```js
// Example
var ourName = "freeCodeCamp";
var ourStr = "Hello, our name is " + ourName + ", how are you?";
// Only change code below this line
var myName;
var myStr;
```
< / div >
### After Test
< div id = 'js-teardown' >
```js
2018-10-20 21:02:47 +03:00
(function(){
var output = [];
if(typeof myName === 'string') {
output.push('myName = "' + myName + '"');
} else {
output.push('myName is not a string');
}
if(typeof myStr === 'string') {
output.push('myStr = "' + myStr + '"');
} else {
output.push('myStr is not a string');
}
return output.join('\n');
})();
2018-09-30 23:01:58 +01:00
```
< / div >
< / section >
## Solution
< section id = 'solution' >
```js
var myName = "Bob";
var myStr = "My name is " + myName + " and I am well!";
```
< / section >