Basic JavaScript - Escaping Literal Quotes in String

Tell us what’s happening:
Describe your issue in detail here.
Please i need help, this is my solution but its not going through.
What am i doing wrong?

Your code so far

const myStr = ""; // Change this line


myStr = "I am a \"double quoted\" string inside \"double quotes\".";

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Escaping Literal Quotes in Strings

Link to the challenge:

You can’t change a string declared as a const. Add your changes to the original string declaration.

Thank you, i understand better now.

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