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

2.0 KiB
Raw Blame History

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