freeCodeCamp/curriculum/challenges/arabic/02-javascript-algorithms-an.../basic-javascript/constructing-strings-with-v...

1.9 KiB

id title challengeType videoUrl localeTitle
56533eb9ac21ba0edf2244b9 Constructing Strings with Variables 1 بناء سلاسل مع المتغيرات

Description

في بعض الأحيان سوف تحتاج إلى بناء سلسلة ، نمط Mad Libs . باستخدام عامل التشغيل السلسة ( + ) ، يمكنك إدراج متغير واحد أو أكثر في سلسلة تقوم ببنائها.

Instructions

تعيين myName إلى سلسلة يساوي اسمك وبناء myStr مع myName بين الجمل "My name is " و " and I am well!"

Tests

tests:
  - text: يجب تعيين <code>myName</code> إلى سلسلة لا تقل عن 3 أحرف
    testString: 'assert(typeof myName !== "undefined" && myName.length > 2, "<code>myName</code> should be set to a string at least 3 characters long");'
  - text: استخدام اثنين <code>+</code> المشغلين لبناء <code>myStr</code> مع <code>myName</code> داخله
    testString: 'assert(code.match(/[""]\s*\+\s*myName\s*\+\s*[""]/g).length > 0, "Use two <code>+</code> operators to build <code>myStr</code> with <code>myName</code> inside it");'

Challenge Seed

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

console.info('after the test');

Solution

// solution required