2021-06-15 00:49:18 -07:00
---
id: 56533eb9ac21ba0edf2244b9
2021-07-26 23:39:21 +09:00
title: Criar strings com variáveis
2021-06-15 00:49:18 -07:00
challengeType: 1
videoUrl: 'https://scrimba.com/c/cqk8rf4'
forumTopicId: 16805
dashedName: constructing-strings-with-variables
---
# --description--
2021-07-26 23:39:21 +09:00
Às vezes, você precisará criar uma string, no estilo [Mad Libs ](https://en.wikipedia.org/wiki/Mad_Libs ). Usando o operador de concatenação (`+` ), você pode inserir uma ou mais variáveis em uma string que você está criando.
2021-06-15 00:49:18 -07:00
2021-07-09 21:23:54 -07:00
Exemplo:
2021-06-15 00:49:18 -07:00
```js
2021-10-27 15:10:57 +00:00
const ourName = "freeCodeCamp";
const ourStr = "Hello, our name is " + ourName + ", how are you?";
2021-06-15 00:49:18 -07:00
```
2021-07-09 21:23:54 -07:00
`ourStr` teria o valor da string `Hello, our name is freeCodeCamp, how are you?` .
2021-06-15 00:49:18 -07:00
# --instructions--
2021-07-09 21:23:54 -07:00
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!`
2021-06-15 00:49:18 -07:00
# --hints--
2021-07-09 21:23:54 -07:00
`myName` deve ser definido para uma string de pelo menos 3 caracteres.
2021-06-15 00:49:18 -07:00
```js
assert(typeof myName !== 'undefined' & & myName.length > 2);
```
2021-07-26 23:39:21 +09:00
Você deve usar dois operadores `+` para criar `myStr` com `myName` dentro dela.
2021-06-15 00:49:18 -07:00
```js
assert(code.match(/["']\s*\+\s*myName\s*\+\s*["']/g).length > 0);
```
# --seed--
## --after-user-code--
```js
(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--
```js
// Only change code below this line
2021-10-27 15:10:57 +00:00
const myName = "";
const myStr = "";
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
2021-10-27 15:10:57 +00:00
const myName = "Bob";
const myStr = "My name is " + myName + " and I am well!";
2021-06-15 00:49:18 -07:00
```