Making escaping quotes in strings

Tell us what’s happening:

I’m not sure why this isn’t working

Your code so far


var myStr = "I am a \"double quoted\" string inside \"double quotes\".; // Change this line

Your browser information:

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

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

You didn’t put closing quotes at the end of your string.

var myStr = “I am a “double quoted” string inside “double quotes.””; // Change this line

Why does it still not work?

I fixed it I the point between the quotation marks.

Good job figuring it out. Happy coding!

I just checked other forums about this and someone gaved the solution.