Using double quotes in a sentence

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

this is my code below
const myStr = “I am a “double quoted” string inside"double quotes”."; // Change this line and i am getting an out put like this
myStr = “I am a “double quoted” string inside"double quotes”."
please help i am stuck on this .
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 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36

Challenge: Escaping Literal Quotes in Strings

Link to the challenge:

If you look at the output you can see you are missing a space between the words inside and double. You just need to add a space between the two words.

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