Escaping Literal Quotes in Strings- stuck

Tell us what’s happening:

I can’t get it to work.

Your code so far

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

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



**Your browser information:**

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

**Challenge:** Escaping Literal Quotes in Strings

**Link to the challenge:**
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/escaping-literal-quotes-in-strings

Similar Topic:
Escaping is done using \(backslash) and you’re using / here…