0
Create a function that given the following object:
var endereco = {
rua: "Rua dos pinheiros",
numero: 1293,
bairro: "Centro",
cidade: "São Paulo",
uf: "SP"
};
Return the following content:
The user lives in São Paulo / SP, in the Centro neighborhood, on the street "Rua dos Pinheiros" with nº 1293.
I did it like this, but it’s not right:
<script>
var endereco = {
rua: 'dos Pinheiros',
num: 1293,
bairro: 'Centro',
cidade: 'São Paulo',
uf: 'SP'
};
function paraString(endereco) {
return 'O usuário mora em' ${endereco.cidade} '/' ${endereco.uf}', no bairro' ${endereco.bairo}', na rua' ${endereco.rua} 'com nº' ${endereco.num}.
};
console.log(paraString(endereco));
</script>
Is why you used single quotes when it should use crase ``
– LeAndrade
Valew! It was that msm
– Wesley