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

1.7 KiB

id, title, challengeType, videoUrl, forumTopicId, dashedName
id title challengeType videoUrl forumTopicId dashedName
56533eb9ac21ba0edf2244b9 Construir strings com variáveis 1 https://scrimba.com/c/cqk8rf4 16805 constructing-strings-with-variables

--description--

Às vezes você precisará construir uma string, no estilo Mad Libs. Usando o operador de concatenação (+), você pode inserir uma ou mais variáveis em uma string que você está construindo.

Exemplo:

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

ourStr teria o valor da string Hello, our name is freeCodeCamp, how are you?.

--instructions--

Defina myName para uma string igual ao seu nome e construa myStr com myName em duas strings: My name is e and I am well!

--hints--

myName deve ser definido para uma string de pelo menos 3 caracteres.

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

Você deve usar dois operadores + para construir myStr com myName dentro dele.

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
var myName;
var myStr;

--solutions--

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