Basic JavaScript - Constructing Strings with Variables

// Only change code below this line
const myName = “var myName” = Beau";
const myStr = “My name is” + myName + and I am well!";
console.log(myStr)

Não estou conseguindo do fazer alguém pode me ajudar?

1 Like

Try adding a " after the last + and just before the word and in myStr.

Does this help?
Keep up the good progress!

Happy Coding! :slightly_smiling_face:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.