--- 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 ```