Files
freeCodeCamp/curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/basic-javascript/constructing-strings-with-variables.md

2.0 KiB
Raw Permalink Blame History

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244b9 Створення рядків зі змінними 1 https://scrimba.com/c/cqk8rf4 16805 constructing-strings-with-variables

--description--

Інколи потрібно створити рядок у стилі гри Mad Libs. Використовуючи оператор об'єднання (+), можна вставити одну або декілька змінних у рядок, який ви створюєте.

Наприклад:

const ourName = "freeCodeCamp";
const ourStr = "Hello, our name is " + ourName + ", how are you?";

ourStr матиме значення рядка Hello, our name is freeCodeCamp, how are you?.

--instructions--

Вставте myName у рядок з вашим іменем і створіть myStr з myName між рядками My name is і and I am well!

--hints--

myName потрібно вставити у рядок, де є принаймні три символи.

assert(typeof myName !== 'undefined' && myName.length > 2);

Ви маєте використати два оператори + для створення myStr з myName всередині нього.

assert(code.match(/["']\s*\+\s*myName\s*\+\s*["']/g).length > 0);

--seed--

--after-user-code--

(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');
})();

--seed-contents--

// Only change code below this line
const myName = "";
const myStr = "";

--solutions--

const myName = "Bob";
const myStr = "My name is " + myName + " and I am well!";