You should use two double quotes ( "
) and four escaped double quotes ( \"
).
Variable myStr should contain the string: I am a "double quoted" string inside "double quotes".
var myStr = "I am a \"double quoted\" string inside\"double quotes\"";
console.log(myStr)
**Your browser information:**
Challenge: Escaping Literal Quotes in Strings
Link to the challenge: