--- id: 56533eb9ac21ba0edf2244b9 title: Constructing Strings with Variables challengeType: 1 videoUrl: '' localeTitle: Построение строк с переменными --- ## Description
Иногда вам нужно будет создать строку, стиль Mad Libs . Используя оператор конкатенации ( + ), вы можете вставить одну или несколько переменных в строку, которую вы строите.
## Instructions
Установите myName в строку, равную вашему имени, и создайте myStr с myName между строками "My name is " и " and I am well!"
## Tests
```yml tests: - text: myName должен быть установлен в строку длиной не менее 3 символов testString: 'assert(typeof myName !== "undefined" && myName.length > 2, "myName should be set to a string at least 3 characters long");' - text: Используйте два + оператора для сборки myStr с myName внутри него testString: 'assert(code.match(/[""]\s*\+\s*myName\s*\+\s*[""]/g).length > 0, "Use two + operators to build myStr with myName inside it");' ```
## Challenge 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; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```