Const myStr = "I am a \"double quoted\"string inside\"double quotes\".";// change code in this line

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

Your code so far


const  myStr = "I am a \"double quoted\"string inside\"double quotes\".";// change code in this line


Your browser information:

User Agent is: Mozilla/5.0 (Android 6.0; Mobile; rv:94.0) Gecko/94.0 Firefox/94.0

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

this is not working
const myStr = “I am a “double quoted"string inside"double quotes”.”;// change code in this line

you are missing a few spaces, remember that the string must match exactly

Cons myStr = “I am a “double quoted” string inside"double quotes”."; pls wnats wrong whith this

Tell us what’s happening:
Describe your issue in detail here. i have tried this challenge several time and its not working pls help me

Your code so far



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

Your browser information:

User Agent is: Mozilla/5.0 (Android 6.0; Mobile; rv:94.0) Gecko/94.0 Firefox/94.0

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

Capitalization typo

Extra space

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