I've been doing the same thing over and over again but it's still an error

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


var myStr = "I am a \"double quoted\" string inside \"double quotes\".;
Console.log(myStr)

Your browser information:

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

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

You didn’t add a " at the end so JS doesn’t know where to end the string.

Also, Console.log is with a lowercase “c” - JS is case-sensitive.

When I fix those, your code passes for me.

I did the change but it’s still an error Screenshot_1

It looks like you deleted the period

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